Instructions to use magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF:Q4_K_M
Use Docker
docker model run hf.co/magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF:Q4_K_M
- Ollama
How to use magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF with Ollama:
ollama run hf.co/magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF:Q4_K_M
- Unsloth Studio
How to use magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF to start chatting
- Pi
How to use magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF with Docker Model Runner:
docker model run hf.co/magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF:Q4_K_M
- Lemonade
How to use magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF:Q4_K_M
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 magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF:Q4_K_M
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 "magiccodingman/Qwen3.6-35B-A3B-Uncensored-MagicQuant-GGUF:Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Super-squash branch 'main' using huggingface_hub
Browse files- .gitattributes +67 -0
- LICENSE +202 -0
- Qwen3.6-35B-A3B-LM-Q8_0.gguf +3 -0
- Qwen3.6-35B-A3B-MQ-IQ2_XXS_1.gguf +3 -0
- Qwen3.6-35B-A3B-MQ-IQ3_M_1.gguf +3 -0
- Qwen3.6-35B-A3B-MQ-IQ4_NL_1.gguf +3 -0
- Qwen3.6-35B-A3B-MQ-Q4_K_M_1.gguf +3 -0
- Qwen3.6-35B-A3B-MQ-Q4_K_M_2.gguf +3 -0
- Qwen3.6-35B-A3B-MQ-Q5_K_1.gguf +3 -0
- Qwen3.6-35B-A3B-MQ-Q5_K_S_1.gguf +3 -0
- Qwen3.6-35B-A3B-MQ-Q6_K_1.gguf +3 -0
- Qwen3.6-35B-A3B-UD-IQ3_S.gguf +3 -0
- README.md +108 -0
- chat_template.jinja +154 -0
- config.json +119 -0
- generation_config.json +12 -0
- imatrix.dat +3 -0
- magicquant-manifest/magicquant.bad-trades.json +1587 -0
- magicquant-manifest/magicquant.clone-benchmarks.json +162 -0
- magicquant-manifest/magicquant.clone-configs.json +0 -0
- magicquant-manifest/magicquant.final-survivors.json +1005 -0
- magicquant-manifest/magicquant.hybrid-map.json +233 -0
- magicquant-manifest/magicquant.isolation-samples.json +0 -0
- magicquant-manifest/magicquant.replacements.json +0 -0
- merges.txt +0 -0
- mmproj-BF16.gguf +0 -0
- model.safetensors.index.json +0 -0
- tokenizer.json +3 -0
- tokenizer_config.json +305 -0
- vocab.json +0 -0
|
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
+
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
*.xz filter=lfs diff=lfs merge=lfs -text
|
| 33 |
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
+
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
+
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
imatrix.dat filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Qwen3.6-35B-A3B-LM-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Qwen3.6-35B-A3B-LM-IQ2_XXS.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Qwen3.6-35B-A3B-UD-Q2_K_XL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Qwen3.6-35B-A3B-UD-IQ3_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Qwen3.6-35B-A3B-UD-Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Qwen3.6-35B-A3B-UD-Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Qwen3.6-35B-A3B-UD-IQ4_NL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Qwen3.6-35B-A3B-MQ-IQ4_XS_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Qwen3.6-35B-A3B-UD-Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
Qwen3.6-35B-A3B-UD-Q4_K_XL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
Qwen3.6-35B-A3B-UD-Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 49 |
+
Qwen3.6-35B-A3B-MQ-Q6_K_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 50 |
+
Qwen3.6-35B-A3B-UD-Q5_K_XL.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
+
Qwen3.6-35B-A3B-MQ-Q5_K_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
+
Qwen3.6-27B-MQ-IQ2_XXS_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
Qwen3.6-27B-UD-IQ3_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
Qwen3.6-27B-MQ-Q5_K_S_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
Qwen3.6-27B-MQ-Q4_K_M_2.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
Qwen3.6-27B-MQ-IQ3_M_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
Qwen3.6-27B-MQ-Q6_K_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
Qwen3.6-27B-MQ-IQ4_NL_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
Qwen3.6-27B-MQ-Q4_K_M_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
Qwen3.6-27B-LM-Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
Qwen3.6-27B-MQ-Q5_K_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
Qwen3.6-35B-A3B-MQ-IQ2_XXS_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 63 |
+
Qwen3.6-35B-A3B-MQ-IQ3_M_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 64 |
+
Qwen3.6-35B-A3B-MQ-IQ4_NL_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 65 |
+
Qwen3.6-35B-A3B-MQ-Q4_K_M_2.gguf filter=lfs diff=lfs merge=lfs -text
|
| 66 |
+
Qwen3.6-35B-A3B-MQ-Q4_K_M_1.gguf filter=lfs diff=lfs merge=lfs -text
|
| 67 |
+
Qwen3.6-35B-A3B-MQ-Q5_K_S_1.gguf filter=lfs diff=lfs merge=lfs -text
|
|
@@ -0,0 +1,202 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
Apache License
|
| 3 |
+
Version 2.0, January 2004
|
| 4 |
+
http://www.apache.org/licenses/
|
| 5 |
+
|
| 6 |
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
| 7 |
+
|
| 8 |
+
1. Definitions.
|
| 9 |
+
|
| 10 |
+
"License" shall mean the terms and conditions for use, reproduction,
|
| 11 |
+
and distribution as defined by Sections 1 through 9 of this document.
|
| 12 |
+
|
| 13 |
+
"Licensor" shall mean the copyright owner or entity authorized by
|
| 14 |
+
the copyright owner that is granting the License.
|
| 15 |
+
|
| 16 |
+
"Legal Entity" shall mean the union of the acting entity and all
|
| 17 |
+
other entities that control, are controlled by, or are under common
|
| 18 |
+
control with that entity. For the purposes of this definition,
|
| 19 |
+
"control" means (i) the power, direct or indirect, to cause the
|
| 20 |
+
direction or management of such entity, whether by contract or
|
| 21 |
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
| 22 |
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
| 23 |
+
|
| 24 |
+
"You" (or "Your") shall mean an individual or Legal Entity
|
| 25 |
+
exercising permissions granted by this License.
|
| 26 |
+
|
| 27 |
+
"Source" form shall mean the preferred form for making modifications,
|
| 28 |
+
including but not limited to software source code, documentation
|
| 29 |
+
source, and configuration files.
|
| 30 |
+
|
| 31 |
+
"Object" form shall mean any form resulting from mechanical
|
| 32 |
+
transformation or translation of a Source form, including but
|
| 33 |
+
not limited to compiled object code, generated documentation,
|
| 34 |
+
and conversions to other media types.
|
| 35 |
+
|
| 36 |
+
"Work" shall mean the work of authorship, whether in Source or
|
| 37 |
+
Object form, made available under the License, as indicated by a
|
| 38 |
+
copyright notice that is included in or attached to the work
|
| 39 |
+
(an example is provided in the Appendix below).
|
| 40 |
+
|
| 41 |
+
"Derivative Works" shall mean any work, whether in Source or Object
|
| 42 |
+
form, that is based on (or derived from) the Work and for which the
|
| 43 |
+
editorial revisions, annotations, elaborations, or other modifications
|
| 44 |
+
represent, as a whole, an original work of authorship. For the purposes
|
| 45 |
+
of this License, Derivative Works shall not include works that remain
|
| 46 |
+
separable from, or merely link (or bind by name) to the interfaces of,
|
| 47 |
+
the Work and Derivative Works thereof.
|
| 48 |
+
|
| 49 |
+
"Contribution" shall mean any work of authorship, including
|
| 50 |
+
the original version of the Work and any modifications or additions
|
| 51 |
+
to that Work or Derivative Works thereof, that is intentionally
|
| 52 |
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
| 53 |
+
or by an individual or Legal Entity authorized to submit on behalf of
|
| 54 |
+
the copyright owner. For the purposes of this definition, "submitted"
|
| 55 |
+
means any form of electronic, verbal, or written communication sent
|
| 56 |
+
to the Licensor or its representatives, including but not limited to
|
| 57 |
+
communication on electronic mailing lists, source code control systems,
|
| 58 |
+
and issue tracking systems that are managed by, or on behalf of, the
|
| 59 |
+
Licensor for the purpose of discussing and improving the Work, but
|
| 60 |
+
excluding communication that is conspicuously marked or otherwise
|
| 61 |
+
designated in writing by the copyright owner as "Not a Contribution."
|
| 62 |
+
|
| 63 |
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
| 64 |
+
on behalf of whom a Contribution has been received by Licensor and
|
| 65 |
+
subsequently incorporated within the Work.
|
| 66 |
+
|
| 67 |
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
| 68 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 69 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 70 |
+
copyright license to reproduce, prepare Derivative Works of,
|
| 71 |
+
publicly display, publicly perform, sublicense, and distribute the
|
| 72 |
+
Work and such Derivative Works in Source or Object form.
|
| 73 |
+
|
| 74 |
+
3. Grant of Patent License. Subject to the terms and conditions of
|
| 75 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 76 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 77 |
+
(except as stated in this section) patent license to make, have made,
|
| 78 |
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
| 79 |
+
where such license applies only to those patent claims licensable
|
| 80 |
+
by such Contributor that are necessarily infringed by their
|
| 81 |
+
Contribution(s) alone or by combination of their Contribution(s)
|
| 82 |
+
with the Work to which such Contribution(s) was submitted. If You
|
| 83 |
+
institute patent litigation against any entity (including a
|
| 84 |
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
| 85 |
+
or a Contribution incorporated within the Work constitutes direct
|
| 86 |
+
or contributory patent infringement, then any patent licenses
|
| 87 |
+
granted to You under this License for that Work shall terminate
|
| 88 |
+
as of the date such litigation is filed.
|
| 89 |
+
|
| 90 |
+
4. Redistribution. You may reproduce and distribute copies of the
|
| 91 |
+
Work or Derivative Works thereof in any medium, with or without
|
| 92 |
+
modifications, and in Source or Object form, provided that You
|
| 93 |
+
meet the following conditions:
|
| 94 |
+
|
| 95 |
+
(a) You must give any other recipients of the Work or
|
| 96 |
+
Derivative Works a copy of this License; and
|
| 97 |
+
|
| 98 |
+
(b) You must cause any modified files to carry prominent notices
|
| 99 |
+
stating that You changed the files; and
|
| 100 |
+
|
| 101 |
+
(c) You must retain, in the Source form of any Derivative Works
|
| 102 |
+
that You distribute, all copyright, patent, trademark, and
|
| 103 |
+
attribution notices from the Source form of the Work,
|
| 104 |
+
excluding those notices that do not pertain to any part of
|
| 105 |
+
the Derivative Works; and
|
| 106 |
+
|
| 107 |
+
(d) If the Work includes a "NOTICE" text file as part of its
|
| 108 |
+
distribution, then any Derivative Works that You distribute must
|
| 109 |
+
include a readable copy of the attribution notices contained
|
| 110 |
+
within such NOTICE file, excluding those notices that do not
|
| 111 |
+
pertain to any part of the Derivative Works, in at least one
|
| 112 |
+
of the following places: within a NOTICE text file distributed
|
| 113 |
+
as part of the Derivative Works; within the Source form or
|
| 114 |
+
documentation, if provided along with the Derivative Works; or,
|
| 115 |
+
within a display generated by the Derivative Works, if and
|
| 116 |
+
wherever such third-party notices normally appear. The contents
|
| 117 |
+
of the NOTICE file are for informational purposes only and
|
| 118 |
+
do not modify the License. You may add Your own attribution
|
| 119 |
+
notices within Derivative Works that You distribute, alongside
|
| 120 |
+
or as an addendum to the NOTICE text from the Work, provided
|
| 121 |
+
that such additional attribution notices cannot be construed
|
| 122 |
+
as modifying the License.
|
| 123 |
+
|
| 124 |
+
You may add Your own copyright statement to Your modifications and
|
| 125 |
+
may provide additional or different license terms and conditions
|
| 126 |
+
for use, reproduction, or distribution of Your modifications, or
|
| 127 |
+
for any such Derivative Works as a whole, provided Your use,
|
| 128 |
+
reproduction, and distribution of the Work otherwise complies with
|
| 129 |
+
the conditions stated in this License.
|
| 130 |
+
|
| 131 |
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
| 132 |
+
any Contribution intentionally submitted for inclusion in the Work
|
| 133 |
+
by You to the Licensor shall be under the terms and conditions of
|
| 134 |
+
this License, without any additional terms or conditions.
|
| 135 |
+
Notwithstanding the above, nothing herein shall supersede or modify
|
| 136 |
+
the terms of any separate license agreement you may have executed
|
| 137 |
+
with Licensor regarding such Contributions.
|
| 138 |
+
|
| 139 |
+
6. Trademarks. This License does not grant permission to use the trade
|
| 140 |
+
names, trademarks, service marks, or product names of the Licensor,
|
| 141 |
+
except as required for reasonable and customary use in describing the
|
| 142 |
+
origin of the Work and reproducing the content of the NOTICE file.
|
| 143 |
+
|
| 144 |
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
| 145 |
+
agreed to in writing, Licensor provides the Work (and each
|
| 146 |
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
| 147 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
| 148 |
+
implied, including, without limitation, any warranties or conditions
|
| 149 |
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
| 150 |
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
| 151 |
+
appropriateness of using or redistributing the Work and assume any
|
| 152 |
+
risks associated with Your exercise of permissions under this License.
|
| 153 |
+
|
| 154 |
+
8. Limitation of Liability. In no event and under no legal theory,
|
| 155 |
+
whether in tort (including negligence), contract, or otherwise,
|
| 156 |
+
unless required by applicable law (such as deliberate and grossly
|
| 157 |
+
negligent acts) or agreed to in writing, shall any Contributor be
|
| 158 |
+
liable to You for damages, including any direct, indirect, special,
|
| 159 |
+
incidental, or consequential damages of any character arising as a
|
| 160 |
+
result of this License or out of the use or inability to use the
|
| 161 |
+
Work (including but not limited to damages for loss of goodwill,
|
| 162 |
+
work stoppage, computer failure or malfunction, or any and all
|
| 163 |
+
other commercial damages or losses), even if such Contributor
|
| 164 |
+
has been advised of the possibility of such damages.
|
| 165 |
+
|
| 166 |
+
9. Accepting Warranty or Additional Liability. While redistributing
|
| 167 |
+
the Work or Derivative Works thereof, You may choose to offer,
|
| 168 |
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
| 169 |
+
or other liability obligations and/or rights consistent with this
|
| 170 |
+
License. However, in accepting such obligations, You may act only
|
| 171 |
+
on Your own behalf and on Your sole responsibility, not on behalf
|
| 172 |
+
of any other Contributor, and only if You agree to indemnify,
|
| 173 |
+
defend, and hold each Contributor harmless for any liability
|
| 174 |
+
incurred by, or claims asserted against, such Contributor by reason
|
| 175 |
+
of your accepting any such warranty or additional liability.
|
| 176 |
+
|
| 177 |
+
END OF TERMS AND CONDITIONS
|
| 178 |
+
|
| 179 |
+
APPENDIX: How to apply the Apache License to your work.
|
| 180 |
+
|
| 181 |
+
To apply the Apache License to your work, attach the following
|
| 182 |
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
| 183 |
+
replaced with your own identifying information. (Don't include
|
| 184 |
+
the brackets!) The text should be enclosed in the appropriate
|
| 185 |
+
comment syntax for the file format. We also recommend that a
|
| 186 |
+
file or class name and description of purpose be included on the
|
| 187 |
+
same "printed page" as the copyright notice for easier
|
| 188 |
+
identification within third-party archives.
|
| 189 |
+
|
| 190 |
+
Copyright 2026 Alibaba Cloud
|
| 191 |
+
|
| 192 |
+
Licensed under the Apache License, Version 2.0 (the "License");
|
| 193 |
+
you may not use this file except in compliance with the License.
|
| 194 |
+
You may obtain a copy of the License at
|
| 195 |
+
|
| 196 |
+
http://www.apache.org/licenses/LICENSE-2.0
|
| 197 |
+
|
| 198 |
+
Unless required by applicable law or agreed to in writing, software
|
| 199 |
+
distributed under the License is distributed on an "AS IS" BASIS,
|
| 200 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 201 |
+
See the License for the specific language governing permissions and
|
| 202 |
+
limitations under the License.
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:33d75b48992d8e0feae33c06e6a858bbdb727f9ed5c558e2119599aced469f96
|
| 3 |
+
size 36908915520
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4f66a74f74c4ea1525bd68f7823717c3ec2589e47b0bd30778290943d35600dc
|
| 3 |
+
size 9587160896
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:83a63eb08c1e08f8af515826f74c58f2f004f13d825b4790cb3132bafc50a867
|
| 3 |
+
size 17604148032
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2fc6f7a07f8c09b1aacee597964fbc455ec9d403d530b54d83823d4df9ec0f08
|
| 3 |
+
size 20887239488
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8812699b8e1f4681e89072d9d9d955351e07f66c28a869442fabc4a7aa8b6940
|
| 3 |
+
size 24818883392
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9887232d733018247137a05f085a67f6fca6b99ea26c52bda4a74a066822f43a
|
| 3 |
+
size 22324804416
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9d210d5a1de4f17d24d994fc1d00e7f4d7bf75972209baf66eac83f846523982
|
| 3 |
+
size 29185153856
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8d76a6d3084bacd37c8af83ff2fd2152d229ffa7b435e4527be4aff68f46fae0
|
| 3 |
+
size 26333027136
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b082323200c28c95e0c09fca32f0a8cba422e8e0de0983c4fac988e27e1c6cf8
|
| 3 |
+
size 31590587200
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ff1b40be57cc1b4941fb56c5e01bd790200eaeb42c10308ad897404567b00352
|
| 3 |
+
size 13676723008
|
|
@@ -0,0 +1,108 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
tags:
|
| 4 |
+
- gguf
|
| 5 |
+
- text-generation
|
| 6 |
+
- magicquant
|
| 7 |
+
- conversational
|
| 8 |
+
base_model:
|
| 9 |
+
- llmfan46/Qwen3.6-35B-A3B-uncensored-heretic
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# MagicQuant Hybrids (v2.0) - Qwen3.6-35B-A3B Uncensored (By llmfan46)
|
| 13 |
+
|
| 14 |
+
MagicQuant is a benchmark driven GGUF hybrid discovery and validation system focused on finding real, practical GGUF quants specific to each architecture.
|
| 15 |
+
|
| 16 |
+
Whether it's a pure baseline model built by llama.cpp, learned tensor configurations from Unsloth, or a custom built MagicQuant hybrid, the model table below shows quants that have won dominance checks, survived collapse spaces, and/or were found to be nonlinearly better. Instead of dumping every quant type possible, MagicQuant tests, validates, and brutally murders anything deemed unworthy.
|
| 17 |
+
|
| 18 |
+
<details>
|
| 19 |
+
<summary>Support MagicQuant</summary>
|
| 20 |
+
|
| 21 |
+
I’m a solo developer working full time for myself to achieve my dream. I build open source code on the side. If you like any of my work, buying me a coffee is always appreciated. Otherwise, I hope you enjoy, maybe give me a star or something. Or just send me good vibes. Either way, thank you!
|
| 22 |
+
|
| 23 |
+
[Click here to see ways to support](https://sayou.biz/support) - BTC, Paypal, GitHub sponsors.
|
| 24 |
+
|
| 25 |
+
</details>
|
| 26 |
+
|
| 27 |
+
<details>
|
| 28 |
+
<summary>Clone Notice</summary>
|
| 29 |
+
|
| 30 |
+
This repository did not run through the full MagicQuant evolution/search pipeline. It is a clone of the final survivor tensor configurations from [magiccodingman/Qwen3.6-35B-A3B-MagicQuant-GGUF](https://huggingface.co/magiccodingman/Qwen3.6-35B-A3B-MagicQuant-GGUF), rebuilt and benchmarked locally for this model.
|
| 31 |
+
|
| 32 |
+
The archived MagicQuant JSON files in `magicquant-manifest/` are copied from the source release for durability. The clone benchmark JSON and the table below are from this clone run, so those metrics reflect the rebuilt outputs in this repository.
|
| 33 |
+
|
| 34 |
+
</details>
|
| 35 |
+
|
| 36 |
+
---
|
| 37 |
+
|
| 38 |
+
## Final survivors
|
| 39 |
+
|
| 40 |
+
| Name | Provider | KLD | Size (GB) | Download |
|
| 41 |
+
| -------------------------------------------------------------------------------------------------------------- | ---------- | -------: | --------: | ------------------------------------------------------------------------ |
|
| 42 |
+
| LM-Q8_0 | llama.cpp | 0.004771 | 36.91 | [Link](./../../resolve/main/Qwen3.6-35B-A3B-LM-Q8_0.gguf?download=true) |
|
| 43 |
+
| [<u>MQ-Q6_K_1</u>](#winner-notes "Replaced: UD-Q6_K_XL") | MagicQuant | 0.005383 | 31.59 | [Link](./../../resolve/main/Qwen3.6-35B-A3B-MQ-Q6_K_1.gguf?download=true) |
|
| 44 |
+
| [<u>MQ-Q5_K_1</u>](#winner-notes "Replaced: UD-Q6_K") | MagicQuant | 0.006012 | 29.19 | [Link](./../../resolve/main/Qwen3.6-35B-A3B-MQ-Q5_K_1.gguf?download=true) |
|
| 45 |
+
| [<u>MQ-Q5_K_S_1</u>](#winner-notes "Replaced: UD-Q5_K_M, MQ-UD-Q5_K_XL, UD-Q5_K_XL") | MagicQuant | 0.007155 | 26.33 | [Link](./../../resolve/main/Qwen3.6-35B-A3B-MQ-Q5_K_S_1.gguf?download=true) |
|
| 46 |
+
| [<u>MQ-Q4_K_M_1</u>](#winner-notes "Replaced: UD-Q5_K_S") | MagicQuant | 0.007832 | 24.82 | [Link](./../../resolve/main/Qwen3.6-35B-A3B-MQ-Q4_K_M_1.gguf?download=true) |
|
| 47 |
+
| [<u>MQ-Q4_K_M_2</u>](#winner-notes "Replaced: UD-Q4_K_XL, UD-Q4_K_M") | MagicQuant | 0.010894 | 22.32 | [Link](./../../resolve/main/Qwen3.6-35B-A3B-MQ-Q4_K_M_2.gguf?download=true) |
|
| 48 |
+
| [<u>MQ-IQ4_NL_1</u>](#winner-notes "Replaced: UD-Q4_K_S, MQ-Q8_0, UD-IQ4_NL_XL") | MagicQuant | 0.013040 | 20.89 | [Link](./../../resolve/main/Qwen3.6-35B-A3B-MQ-IQ4_NL_1.gguf?download=true) |
|
| 49 |
+
| [<u>MQ-IQ3_M_1</u>](#winner-notes "Replaced: UD-IQ4_NL, MQ-Q8_0, UD-IQ4_XS, UD-Q3_K_M, UD-Q3_K_S") | MagicQuant | 0.026825 | 17.60 | [Link](./../../resolve/main/Qwen3.6-35B-A3B-MQ-IQ3_M_1.gguf?download=true) |
|
| 50 |
+
| [<u>UD-IQ3_S</u>](#winner-notes "Replaced: MQ-Q8_0, MQ-UD-IQ3_XXS, UD-IQ3_XXS, UD-Q2_K_XL, UD-IQ2_M + 5 more") | Unsloth | 0.068513 | 13.68 | [Link](./../../resolve/main/Qwen3.6-35B-A3B-UD-IQ3_S.gguf?download=true) |
|
| 51 |
+
| [<u>MQ-IQ2_XXS_1</u>](#winner-notes "Replaced: LM-IQ2_XXS") | MagicQuant | 0.275805 | 9.59 | [Link](./../../resolve/main/Qwen3.6-35B-A3B-MQ-IQ2_XXS_1.gguf?download=true) |
|
| 52 |
+
|
| 53 |
+
<details>
|
| 54 |
+
<summary>Provider credits</summary>
|
| 55 |
+
|
| 56 |
+
- [llama.cpp](https://github.com/ggml-org/llama.cpp) — Baseline quantization formats and llama.cpp tooling.
|
| 57 |
+
|
| 58 |
+
</details>
|
| 59 |
+
|
| 60 |
+
<details>
|
| 61 |
+
<summary>Warning - Is MagicQuant Better? (hint: how you frame the question matters)</summary>
|
| 62 |
+
|
| 63 |
+
External/custom baselines are normalized into MagicQuant's controlled comparison flow. MagicQuant rebuilds a learned baseline under native-source / MagicQuant-controlled conditions, including its own imatrix handling, so hybrids or external baselines (like Unsloth) can be judged on a more equal footing. That does **not** mean MagicQuant proved the original upstream artifact or upstream imatrix was worse. These comparisons exist for internal hybrid-search consistency and equal playing field comparisons, not as a universal judgment of the original creator's exact release artifact.
|
| 64 |
+
|
| 65 |
+
**Easier to digest explanation:**
|
| 66 |
+
|
| 67 |
+
MagicQuant compares and benchmarks the models quant to tensor configurations, but not the original artifact. And there's different reasons MagicQuant chooses to lift up a winning quant, not all winners are purely "better". It depends heavily on a variety of factors. Though choices are always documented in the repo under the manifest folder. You can always view what and why decisions were made by the automated system.
|
| 68 |
+
|
| 69 |
+
So, MagicQuant can confidently tell you, "under the same quantization to tensor configurations and identical imatrix, with this benchmark, I deemed this a winner".
|
| 70 |
+
|
| 71 |
+
</details>
|
| 72 |
+
|
| 73 |
+
<details>
|
| 74 |
+
<summary>Re-Uploading External Provider Baselines</summary>
|
| 75 |
+
|
| 76 |
+
By default, if an external provider like Unsloth is deemed the winner, the repo should generally link directly to the original provider instead of re-hosting the quant. External GGUFs are normally only re-uploaded when a specific winning variant does not already exist (e.g. Heretic models or similar).
|
| 77 |
+
|
| 78 |
+
</details>
|
| 79 |
+
|
| 80 |
+
---
|
| 81 |
+
|
| 82 |
+
## Release metadata
|
| 83 |
+
|
| 84 |
+
- [Final survivor metrics](./../../resolve/main/magicquant-manifest/magicquant.final-survivors.json) — full file names, KLD, PPL, PPL delta %, byte sizes, download targets, and replacement lineage. PPL delta % is measured against the native/reference PPL when available; negative is better and larger positive values are worse.
|
| 85 |
+
- [Hybrid tensor map](./../../resolve/main/magicquant-manifest/magicquant.hybrid-map.json) — tensor-group assignments and effective-state details for MagicQuant hybrid GGUFs.
|
| 86 |
+
- [Clone tensor configs](./../../resolve/main/magicquant-manifest/magicquant.clone-configs.json) — exact per-GGUF tensor quantization maps for reproducing this final output list in repository clone mode.
|
| 87 |
+
- [Isolation samples](./../../resolve/main/magicquant-manifest/magicquant.isolation-samples.json) — isolated base/group probe samples with KLD, PPL, PPL delta %, and size truth.
|
| 88 |
+
- [Bad trade details](./../../resolve/main/magicquant-manifest/magicquant.bad-trades.json) — structured bad-trade pruning decisions from the isolation optimizer.
|
| 89 |
+
- [Clone benchmark summary](./../../resolve/main/magicquant-manifest/magicquant.clone-benchmarks.json) — fresh benchmark results from this clone run.
|
| 90 |
+
- [Replacement details](./../../resolve/main/magicquant-manifest/magicquant.replacements.json) — structured details for baselines or anchors removed from the final download table, including reason codes, KLD deltas, PPL delta %, and size deltas.
|
| 91 |
+
|
| 92 |
+
<details>
|
| 93 |
+
<summary>Replacement reason codes</summary>
|
| 94 |
+
|
| 95 |
+
- `STRICT_DOMINANCE` — the winner was no larger and had lower real KLD than the removed anchor.
|
| 96 |
+
- `NEAR_BASELINE_PREMIUM` — the winner used only the configured near-baseline size premium and beat the real linear KLD trade line.
|
| 97 |
+
- `INTERIOR_DISCOVERY` — the winner was selected as a useful interior point inside a size/KLD gap between anchors.
|
| 98 |
+
- `SPACING_COLLAPSE` — two candidates were too close in practical output space, so the stronger one was kept.
|
| 99 |
+
- `FINAL_DOMINANCE` — a later validated survivor dominated this artifact in final real benchmark comparison.
|
| 100 |
+
|
| 101 |
+
<a id="winner-notes"></a>
|
| 102 |
+
Underlined names in the table replaced or ultimately inherited the replacement of another artifact. Hover the name for the short replacement summary, or inspect `magicquant-manifest/magicquant.replacements.json` for exact KLD/PPL/size deltas.
|
| 103 |
+
|
| 104 |
+
</details>
|
| 105 |
+
|
| 106 |
+
|
| 107 |
+
---
|
| 108 |
+
|
|
@@ -0,0 +1,154 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- set image_count = namespace(value=0) %}
|
| 2 |
+
{%- set video_count = namespace(value=0) %}
|
| 3 |
+
{%- macro render_content(content, do_vision_count, is_system_content=false) %}
|
| 4 |
+
{%- if content is string %}
|
| 5 |
+
{{- content }}
|
| 6 |
+
{%- elif content is iterable and content is not mapping %}
|
| 7 |
+
{%- for item in content %}
|
| 8 |
+
{%- if 'image' in item or 'image_url' in item or item.type == 'image' %}
|
| 9 |
+
{%- if is_system_content %}
|
| 10 |
+
{{- raise_exception('System message cannot contain images.') }}
|
| 11 |
+
{%- endif %}
|
| 12 |
+
{%- if do_vision_count %}
|
| 13 |
+
{%- set image_count.value = image_count.value + 1 %}
|
| 14 |
+
{%- endif %}
|
| 15 |
+
{%- if add_vision_id %}
|
| 16 |
+
{{- 'Picture ' ~ image_count.value ~ ': ' }}
|
| 17 |
+
{%- endif %}
|
| 18 |
+
{{- '<|vision_start|><|image_pad|><|vision_end|>' }}
|
| 19 |
+
{%- elif 'video' in item or item.type == 'video' %}
|
| 20 |
+
{%- if is_system_content %}
|
| 21 |
+
{{- raise_exception('System message cannot contain videos.') }}
|
| 22 |
+
{%- endif %}
|
| 23 |
+
{%- if do_vision_count %}
|
| 24 |
+
{%- set video_count.value = video_count.value + 1 %}
|
| 25 |
+
{%- endif %}
|
| 26 |
+
{%- if add_vision_id %}
|
| 27 |
+
{{- 'Video ' ~ video_count.value ~ ': ' }}
|
| 28 |
+
{%- endif %}
|
| 29 |
+
{{- '<|vision_start|><|video_pad|><|vision_end|>' }}
|
| 30 |
+
{%- elif 'text' in item %}
|
| 31 |
+
{{- item.text }}
|
| 32 |
+
{%- else %}
|
| 33 |
+
{{- raise_exception('Unexpected item type in content.') }}
|
| 34 |
+
{%- endif %}
|
| 35 |
+
{%- endfor %}
|
| 36 |
+
{%- elif content is none or content is undefined %}
|
| 37 |
+
{{- '' }}
|
| 38 |
+
{%- else %}
|
| 39 |
+
{{- raise_exception('Unexpected content type.') }}
|
| 40 |
+
{%- endif %}
|
| 41 |
+
{%- endmacro %}
|
| 42 |
+
{%- if not messages %}
|
| 43 |
+
{{- raise_exception('No messages provided.') }}
|
| 44 |
+
{%- endif %}
|
| 45 |
+
{%- if tools and tools is iterable and tools is not mapping %}
|
| 46 |
+
{{- '<|im_start|>system\n' }}
|
| 47 |
+
{{- "# Tools\n\nYou have access to the following functions:\n\n<tools>" }}
|
| 48 |
+
{%- for tool in tools %}
|
| 49 |
+
{{- "\n" }}
|
| 50 |
+
{{- tool | tojson }}
|
| 51 |
+
{%- endfor %}
|
| 52 |
+
{{- "\n</tools>" }}
|
| 53 |
+
{{- '\n\nIf you choose to call a function ONLY reply in the following format with NO suffix:\n\n<tool_call>\n<function=example_function_name>\n<parameter=example_parameter_1>\nvalue_1\n</parameter>\n<parameter=example_parameter_2>\nThis is the value for the second parameter\nthat can span\nmultiple lines\n</parameter>\n</function>\n</tool_call>\n\n<IMPORTANT>\nReminder:\n- Function calls MUST follow the specified format: an inner <function=...></function> block must be nested within <tool_call></tool_call> XML tags\n- Required parameters MUST be specified\n- You may provide optional reasoning for your function call in natural language BEFORE the function call, but NOT after\n- If there is no function call available, answer the question like normal with your current knowledge and do not tell the user about function calls\n</IMPORTANT>' }}
|
| 54 |
+
{%- if messages[0].role == 'system' %}
|
| 55 |
+
{%- set content = render_content(messages[0].content, false, true)|trim %}
|
| 56 |
+
{%- if content %}
|
| 57 |
+
{{- '\n\n' + content }}
|
| 58 |
+
{%- endif %}
|
| 59 |
+
{%- endif %}
|
| 60 |
+
{{- '<|im_end|>\n' }}
|
| 61 |
+
{%- else %}
|
| 62 |
+
{%- if messages[0].role == 'system' %}
|
| 63 |
+
{%- set content = render_content(messages[0].content, false, true)|trim %}
|
| 64 |
+
{{- '<|im_start|>system\n' + content + '<|im_end|>\n' }}
|
| 65 |
+
{%- endif %}
|
| 66 |
+
{%- endif %}
|
| 67 |
+
{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
|
| 68 |
+
{%- for message in messages[::-1] %}
|
| 69 |
+
{%- set index = (messages|length - 1) - loop.index0 %}
|
| 70 |
+
{%- if ns.multi_step_tool and message.role == "user" %}
|
| 71 |
+
{%- set content = render_content(message.content, false)|trim %}
|
| 72 |
+
{%- if not(content.startswith('<tool_response>') and content.endswith('</tool_response>')) %}
|
| 73 |
+
{%- set ns.multi_step_tool = false %}
|
| 74 |
+
{%- set ns.last_query_index = index %}
|
| 75 |
+
{%- endif %}
|
| 76 |
+
{%- endif %}
|
| 77 |
+
{%- endfor %}
|
| 78 |
+
{%- if ns.multi_step_tool %}
|
| 79 |
+
{{- raise_exception('No user query found in messages.') }}
|
| 80 |
+
{%- endif %}
|
| 81 |
+
{%- for message in messages %}
|
| 82 |
+
{%- set content = render_content(message.content, true)|trim %}
|
| 83 |
+
{%- if message.role == "system" %}
|
| 84 |
+
{%- if not loop.first %}
|
| 85 |
+
{{- raise_exception('System message must be at the beginning.') }}
|
| 86 |
+
{%- endif %}
|
| 87 |
+
{%- elif message.role == "user" %}
|
| 88 |
+
{{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
|
| 89 |
+
{%- elif message.role == "assistant" %}
|
| 90 |
+
{%- set reasoning_content = '' %}
|
| 91 |
+
{%- if message.reasoning_content is string %}
|
| 92 |
+
{%- set reasoning_content = message.reasoning_content %}
|
| 93 |
+
{%- else %}
|
| 94 |
+
{%- if '</think>' in content %}
|
| 95 |
+
{%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
|
| 96 |
+
{%- set content = content.split('</think>')[-1].lstrip('\n') %}
|
| 97 |
+
{%- endif %}
|
| 98 |
+
{%- endif %}
|
| 99 |
+
{%- set reasoning_content = reasoning_content|trim %}
|
| 100 |
+
{%- if (preserve_thinking is defined and preserve_thinking is true) or (loop.index0 > ns.last_query_index) %}
|
| 101 |
+
{{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content + '\n</think>\n\n' + content }}
|
| 102 |
+
{%- else %}
|
| 103 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 104 |
+
{%- endif %}
|
| 105 |
+
{%- if message.tool_calls and message.tool_calls is iterable and message.tool_calls is not mapping %}
|
| 106 |
+
{%- for tool_call in message.tool_calls %}
|
| 107 |
+
{%- if tool_call.function is defined %}
|
| 108 |
+
{%- set tool_call = tool_call.function %}
|
| 109 |
+
{%- endif %}
|
| 110 |
+
{%- if loop.first %}
|
| 111 |
+
{%- if content|trim %}
|
| 112 |
+
{{- '\n\n<tool_call>\n<function=' + tool_call.name + '>\n' }}
|
| 113 |
+
{%- else %}
|
| 114 |
+
{{- '<tool_call>\n<function=' + tool_call.name + '>\n' }}
|
| 115 |
+
{%- endif %}
|
| 116 |
+
{%- else %}
|
| 117 |
+
{{- '\n<tool_call>\n<function=' + tool_call.name + '>\n' }}
|
| 118 |
+
{%- endif %}
|
| 119 |
+
{%- if tool_call.arguments is defined %}
|
| 120 |
+
{%- for args_name, args_value in tool_call.arguments|items %}
|
| 121 |
+
{{- '<parameter=' + args_name + '>\n' }}
|
| 122 |
+
{%- set args_value = args_value | string if args_value is string else args_value | tojson | safe %}
|
| 123 |
+
{{- args_value }}
|
| 124 |
+
{{- '\n</parameter>\n' }}
|
| 125 |
+
{%- endfor %}
|
| 126 |
+
{%- endif %}
|
| 127 |
+
{{- '</function>\n</tool_call>' }}
|
| 128 |
+
{%- endfor %}
|
| 129 |
+
{%- endif %}
|
| 130 |
+
{{- '<|im_end|>\n' }}
|
| 131 |
+
{%- elif message.role == "tool" %}
|
| 132 |
+
{%- if loop.previtem and loop.previtem.role != "tool" %}
|
| 133 |
+
{{- '<|im_start|>user' }}
|
| 134 |
+
{%- endif %}
|
| 135 |
+
{{- '\n<tool_response>\n' }}
|
| 136 |
+
{{- content }}
|
| 137 |
+
{{- '\n</tool_response>' }}
|
| 138 |
+
{%- if not loop.last and loop.nextitem.role != "tool" %}
|
| 139 |
+
{{- '<|im_end|>\n' }}
|
| 140 |
+
{%- elif loop.last %}
|
| 141 |
+
{{- '<|im_end|>\n' }}
|
| 142 |
+
{%- endif %}
|
| 143 |
+
{%- else %}
|
| 144 |
+
{{- raise_exception('Unexpected message role.') }}
|
| 145 |
+
{%- endif %}
|
| 146 |
+
{%- endfor %}
|
| 147 |
+
{%- if add_generation_prompt %}
|
| 148 |
+
{{- '<|im_start|>assistant\n' }}
|
| 149 |
+
{%- if enable_thinking is defined and enable_thinking is false %}
|
| 150 |
+
{{- '<think>\n\n</think>\n\n' }}
|
| 151 |
+
{%- else %}
|
| 152 |
+
{{- '<think>\n' }}
|
| 153 |
+
{%- endif %}
|
| 154 |
+
{%- endif %}
|
|
@@ -0,0 +1,119 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Qwen3_5MoeForConditionalGeneration"
|
| 4 |
+
],
|
| 5 |
+
"image_token_id": 248056,
|
| 6 |
+
"model_type": "qwen3_5_moe",
|
| 7 |
+
"text_config": {
|
| 8 |
+
"attention_bias": false,
|
| 9 |
+
"attention_dropout": 0.0,
|
| 10 |
+
"attn_output_gate": true,
|
| 11 |
+
"bos_token_id": 248044,
|
| 12 |
+
"dtype": "bfloat16",
|
| 13 |
+
"eos_token_id": 248044,
|
| 14 |
+
"full_attention_interval": 4,
|
| 15 |
+
"head_dim": 256,
|
| 16 |
+
"hidden_act": "silu",
|
| 17 |
+
"hidden_size": 2048,
|
| 18 |
+
"initializer_range": 0.02,
|
| 19 |
+
"layer_types": [
|
| 20 |
+
"linear_attention",
|
| 21 |
+
"linear_attention",
|
| 22 |
+
"linear_attention",
|
| 23 |
+
"full_attention",
|
| 24 |
+
"linear_attention",
|
| 25 |
+
"linear_attention",
|
| 26 |
+
"linear_attention",
|
| 27 |
+
"full_attention",
|
| 28 |
+
"linear_attention",
|
| 29 |
+
"linear_attention",
|
| 30 |
+
"linear_attention",
|
| 31 |
+
"full_attention",
|
| 32 |
+
"linear_attention",
|
| 33 |
+
"linear_attention",
|
| 34 |
+
"linear_attention",
|
| 35 |
+
"full_attention",
|
| 36 |
+
"linear_attention",
|
| 37 |
+
"linear_attention",
|
| 38 |
+
"linear_attention",
|
| 39 |
+
"full_attention",
|
| 40 |
+
"linear_attention",
|
| 41 |
+
"linear_attention",
|
| 42 |
+
"linear_attention",
|
| 43 |
+
"full_attention",
|
| 44 |
+
"linear_attention",
|
| 45 |
+
"linear_attention",
|
| 46 |
+
"linear_attention",
|
| 47 |
+
"full_attention",
|
| 48 |
+
"linear_attention",
|
| 49 |
+
"linear_attention",
|
| 50 |
+
"linear_attention",
|
| 51 |
+
"full_attention",
|
| 52 |
+
"linear_attention",
|
| 53 |
+
"linear_attention",
|
| 54 |
+
"linear_attention",
|
| 55 |
+
"full_attention",
|
| 56 |
+
"linear_attention",
|
| 57 |
+
"linear_attention",
|
| 58 |
+
"linear_attention",
|
| 59 |
+
"full_attention"
|
| 60 |
+
],
|
| 61 |
+
"linear_conv_kernel_dim": 4,
|
| 62 |
+
"linear_key_head_dim": 128,
|
| 63 |
+
"linear_num_key_heads": 16,
|
| 64 |
+
"linear_num_value_heads": 32,
|
| 65 |
+
"linear_value_head_dim": 128,
|
| 66 |
+
"mamba_ssm_dtype": "float32",
|
| 67 |
+
"max_position_embeddings": 262144,
|
| 68 |
+
"model_type": "qwen3_5_moe_text",
|
| 69 |
+
"moe_intermediate_size": 512,
|
| 70 |
+
"mtp_num_hidden_layers": 1,
|
| 71 |
+
"mtp_use_dedicated_embeddings": false,
|
| 72 |
+
"num_attention_heads": 16,
|
| 73 |
+
"num_experts": 256,
|
| 74 |
+
"num_experts_per_tok": 8,
|
| 75 |
+
"num_hidden_layers": 40,
|
| 76 |
+
"num_key_value_heads": 2,
|
| 77 |
+
"output_router_logits": false,
|
| 78 |
+
"pad_token_id": null,
|
| 79 |
+
"partial_rotary_factor": 0.25,
|
| 80 |
+
"rms_norm_eps": 1e-06,
|
| 81 |
+
"rope_parameters": {
|
| 82 |
+
"mrope_interleaved": true,
|
| 83 |
+
"mrope_section": [
|
| 84 |
+
11,
|
| 85 |
+
11,
|
| 86 |
+
10
|
| 87 |
+
],
|
| 88 |
+
"partial_rotary_factor": 0.25,
|
| 89 |
+
"rope_theta": 10000000,
|
| 90 |
+
"rope_type": "default"
|
| 91 |
+
},
|
| 92 |
+
"router_aux_loss_coef": 0.001,
|
| 93 |
+
"shared_expert_intermediate_size": 512,
|
| 94 |
+
"tie_word_embeddings": false,
|
| 95 |
+
"use_cache": true,
|
| 96 |
+
"vocab_size": 248320
|
| 97 |
+
},
|
| 98 |
+
"tie_word_embeddings": false,
|
| 99 |
+
"transformers_version": "4.57.1",
|
| 100 |
+
"video_token_id": 248057,
|
| 101 |
+
"vision_config": {
|
| 102 |
+
"deepstack_visual_indexes": [],
|
| 103 |
+
"depth": 27,
|
| 104 |
+
"hidden_act": "gelu_pytorch_tanh",
|
| 105 |
+
"hidden_size": 1152,
|
| 106 |
+
"in_channels": 3,
|
| 107 |
+
"initializer_range": 0.02,
|
| 108 |
+
"intermediate_size": 4304,
|
| 109 |
+
"model_type": "qwen3_5_moe",
|
| 110 |
+
"num_heads": 16,
|
| 111 |
+
"num_position_embeddings": 2304,
|
| 112 |
+
"out_hidden_size": 2048,
|
| 113 |
+
"patch_size": 16,
|
| 114 |
+
"spatial_merge_size": 2,
|
| 115 |
+
"temporal_patch_size": 2
|
| 116 |
+
},
|
| 117 |
+
"vision_end_token_id": 248054,
|
| 118 |
+
"vision_start_token_id": 248053
|
| 119 |
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token_id": 248044,
|
| 3 |
+
"do_sample": true,
|
| 4 |
+
"eos_token_id": [
|
| 5 |
+
248046,
|
| 6 |
+
248044
|
| 7 |
+
],
|
| 8 |
+
"pad_token_id": 248044,
|
| 9 |
+
"temperature": 1.0,
|
| 10 |
+
"top_k": 20,
|
| 11 |
+
"top_p": 0.95
|
| 12 |
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3837ca11e1e521a5851e92ec8b8b2dcd29ef02eaf10ad965aa25c43339cf88de
|
| 3 |
+
size 192223968
|
|
@@ -0,0 +1,1587 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"generatedUtc": "2026-05-12T03:08:33.4873339Z",
|
| 3 |
+
"modelId": "mq-blake3:f5ea826f4ad276ba78a5e0c62417df1e42543230f648c33a50c2fbcc8b81d20c",
|
| 4 |
+
"architectureFamily": "Qwen3.6-35B-A3B",
|
| 5 |
+
"summary": {
|
| 6 |
+
"badTradeEliminations": 66,
|
| 7 |
+
"synergySecondChanceReinstatements": 11,
|
| 8 |
+
"finalKldCleanupEliminations": 18,
|
| 9 |
+
"disabledBaselines": 0,
|
| 10 |
+
"structuredBadTradeRows": 66,
|
| 11 |
+
"structuredSynergySecondChanceRows": 11
|
| 12 |
+
},
|
| 13 |
+
"thresholds": {
|
| 14 |
+
"maxSizeDeltaPercent": 4,
|
| 15 |
+
"kldMultiplier": 2.5,
|
| 16 |
+
"pplMultiplier": 3.5,
|
| 17 |
+
"floatingPointEpsilon": 1E-08
|
| 18 |
+
},
|
| 19 |
+
"badTrades": [
|
| 20 |
+
{
|
| 21 |
+
"Scope": "group",
|
| 22 |
+
"GroupName": "embeddings",
|
| 23 |
+
"RemovedCandidate": "IQ3_M",
|
| 24 |
+
"AcceptedAnchor": "IQ4_XS",
|
| 25 |
+
"Reason": "Reason: small size gain (0.08%) but disproportionate damage (KLD x1.99, |PPL| x5.43).",
|
| 26 |
+
"RemovedSizeBytes": 68108269984,
|
| 27 |
+
"RemovedSizeGB": 68.108269984,
|
| 28 |
+
"RemovedSizeGiB": 63.430769354104996,
|
| 29 |
+
"RemovedKld": 0.011578,
|
| 30 |
+
"RemovedPplDeltaPercent": -0.9802883770001846,
|
| 31 |
+
"AnchorSizeBytes": 68159920544,
|
| 32 |
+
"AnchorSizeGB": 68.15992054399999,
|
| 33 |
+
"AnchorSizeGiB": 63.47887268662453,
|
| 34 |
+
"AnchorKld": 0.005831,
|
| 35 |
+
"AnchorPplDeltaPercent": 0.18049938456127174,
|
| 36 |
+
"SizeDeltaPercent": 0.0757784920929558,
|
| 37 |
+
"KldRatio": 1.985594237695078,
|
| 38 |
+
"PplAbsRatio": 5.430979055041703
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"Scope": "group",
|
| 42 |
+
"GroupName": "embeddings",
|
| 43 |
+
"RemovedCandidate": "IQ3_S",
|
| 44 |
+
"AcceptedAnchor": "IQ4_XS",
|
| 45 |
+
"Reason": "Reason: small size gain (0.08%) but disproportionate damage (KLD x1.99, |PPL| x5.43).",
|
| 46 |
+
"RemovedSizeBytes": 68108269984,
|
| 47 |
+
"RemovedSizeGB": 68.108269984,
|
| 48 |
+
"RemovedSizeGiB": 63.430769354104996,
|
| 49 |
+
"RemovedKld": 0.011578,
|
| 50 |
+
"RemovedPplDeltaPercent": -0.9802883770001846,
|
| 51 |
+
"AnchorSizeBytes": 68159920544,
|
| 52 |
+
"AnchorSizeGB": 68.15992054399999,
|
| 53 |
+
"AnchorSizeGiB": 63.47887268662453,
|
| 54 |
+
"AnchorKld": 0.005831,
|
| 55 |
+
"AnchorPplDeltaPercent": 0.18049938456127174,
|
| 56 |
+
"SizeDeltaPercent": 0.0757784920929558,
|
| 57 |
+
"KldRatio": 1.985594237695078,
|
| 58 |
+
"PplAbsRatio": 5.430979055041703
|
| 59 |
+
},
|
| 60 |
+
{
|
| 61 |
+
"Scope": "group",
|
| 62 |
+
"GroupName": "embeddings",
|
| 63 |
+
"RemovedCandidate": "IQ3_XS",
|
| 64 |
+
"AcceptedAnchor": "IQ4_XS",
|
| 65 |
+
"Reason": "Reason: small size gain (0.08%) but disproportionate damage (KLD x1.99, |PPL| x5.43).",
|
| 66 |
+
"RemovedSizeBytes": 68108269984,
|
| 67 |
+
"RemovedSizeGB": 68.108269984,
|
| 68 |
+
"RemovedSizeGiB": 63.430769354104996,
|
| 69 |
+
"RemovedKld": 0.011578,
|
| 70 |
+
"RemovedPplDeltaPercent": -0.9802883770001846,
|
| 71 |
+
"AnchorSizeBytes": 68159920544,
|
| 72 |
+
"AnchorSizeGB": 68.15992054399999,
|
| 73 |
+
"AnchorSizeGiB": 63.47887268662453,
|
| 74 |
+
"AnchorKld": 0.005831,
|
| 75 |
+
"AnchorPplDeltaPercent": 0.18049938456127174,
|
| 76 |
+
"SizeDeltaPercent": 0.0757784920929558,
|
| 77 |
+
"KldRatio": 1.985594237695078,
|
| 78 |
+
"PplAbsRatio": 5.430979055041703
|
| 79 |
+
},
|
| 80 |
+
{
|
| 81 |
+
"Scope": "group",
|
| 82 |
+
"GroupName": "embeddings",
|
| 83 |
+
"RemovedCandidate": "IQ3_XXS",
|
| 84 |
+
"AcceptedAnchor": "IQ4_XS",
|
| 85 |
+
"Reason": "Reason: small size gain (0.08%) but disproportionate damage (KLD x1.99, |PPL| x5.43).",
|
| 86 |
+
"RemovedSizeBytes": 68108269984,
|
| 87 |
+
"RemovedSizeGB": 68.108269984,
|
| 88 |
+
"RemovedSizeGiB": 63.430769354104996,
|
| 89 |
+
"RemovedKld": 0.011578,
|
| 90 |
+
"RemovedPplDeltaPercent": -0.9802883770001846,
|
| 91 |
+
"AnchorSizeBytes": 68159920544,
|
| 92 |
+
"AnchorSizeGB": 68.15992054399999,
|
| 93 |
+
"AnchorSizeGiB": 63.47887268662453,
|
| 94 |
+
"AnchorKld": 0.005831,
|
| 95 |
+
"AnchorPplDeltaPercent": 0.18049938456127174,
|
| 96 |
+
"SizeDeltaPercent": 0.0757784920929558,
|
| 97 |
+
"KldRatio": 1.985594237695078,
|
| 98 |
+
"PplAbsRatio": 5.430979055041703
|
| 99 |
+
},
|
| 100 |
+
{
|
| 101 |
+
"Scope": "group",
|
| 102 |
+
"GroupName": "embeddings",
|
| 103 |
+
"RemovedCandidate": "IQ2_M",
|
| 104 |
+
"AcceptedAnchor": "IQ4_XS",
|
| 105 |
+
"Reason": "Reason: small size gain (0.08%) but disproportionate damage (KLD x1.99, |PPL| x5.43).",
|
| 106 |
+
"RemovedSizeBytes": 68108269984,
|
| 107 |
+
"RemovedSizeGB": 68.108269984,
|
| 108 |
+
"RemovedSizeGiB": 63.430769354104996,
|
| 109 |
+
"RemovedKld": 0.011578,
|
| 110 |
+
"RemovedPplDeltaPercent": -0.9802883770001846,
|
| 111 |
+
"AnchorSizeBytes": 68159920544,
|
| 112 |
+
"AnchorSizeGB": 68.15992054399999,
|
| 113 |
+
"AnchorSizeGiB": 63.47887268662453,
|
| 114 |
+
"AnchorKld": 0.005831,
|
| 115 |
+
"AnchorPplDeltaPercent": 0.18049938456127174,
|
| 116 |
+
"SizeDeltaPercent": 0.0757784920929558,
|
| 117 |
+
"KldRatio": 1.985594237695078,
|
| 118 |
+
"PplAbsRatio": 5.430979055041703
|
| 119 |
+
},
|
| 120 |
+
{
|
| 121 |
+
"Scope": "group",
|
| 122 |
+
"GroupName": "embeddings",
|
| 123 |
+
"RemovedCandidate": "IQ2_S",
|
| 124 |
+
"AcceptedAnchor": "IQ4_XS",
|
| 125 |
+
"Reason": "Reason: small size gain (0.08%) but disproportionate damage (KLD x1.99, |PPL| x5.43).",
|
| 126 |
+
"RemovedSizeBytes": 68108269984,
|
| 127 |
+
"RemovedSizeGB": 68.108269984,
|
| 128 |
+
"RemovedSizeGiB": 63.430769354104996,
|
| 129 |
+
"RemovedKld": 0.011578,
|
| 130 |
+
"RemovedPplDeltaPercent": -0.9802883770001846,
|
| 131 |
+
"AnchorSizeBytes": 68159920544,
|
| 132 |
+
"AnchorSizeGB": 68.15992054399999,
|
| 133 |
+
"AnchorSizeGiB": 63.47887268662453,
|
| 134 |
+
"AnchorKld": 0.005831,
|
| 135 |
+
"AnchorPplDeltaPercent": 0.18049938456127174,
|
| 136 |
+
"SizeDeltaPercent": 0.0757784920929558,
|
| 137 |
+
"KldRatio": 1.985594237695078,
|
| 138 |
+
"PplAbsRatio": 5.430979055041703
|
| 139 |
+
},
|
| 140 |
+
{
|
| 141 |
+
"Scope": "group",
|
| 142 |
+
"GroupName": "embeddings",
|
| 143 |
+
"RemovedCandidate": "IQ2_XS",
|
| 144 |
+
"AcceptedAnchor": "IQ4_XS",
|
| 145 |
+
"Reason": "Reason: small size gain (0.15%) but disproportionate damage (KLD x2.43, |PPL| x6.19).",
|
| 146 |
+
"RemovedSizeBytes": 68056619424,
|
| 147 |
+
"RemovedSizeGB": 68.05661942399999,
|
| 148 |
+
"RemovedSizeGiB": 63.382666021585464,
|
| 149 |
+
"RemovedKld": 0.014153,
|
| 150 |
+
"RemovedPplDeltaPercent": 1.1165992614735287,
|
| 151 |
+
"AnchorSizeBytes": 68159920544,
|
| 152 |
+
"AnchorSizeGB": 68.15992054399999,
|
| 153 |
+
"AnchorSizeGiB": 63.47887268662453,
|
| 154 |
+
"AnchorKld": 0.005831,
|
| 155 |
+
"AnchorPplDeltaPercent": 0.18049938456127174,
|
| 156 |
+
"SizeDeltaPercent": 0.1515569841859116,
|
| 157 |
+
"KldRatio": 2.427199451209055,
|
| 158 |
+
"PplAbsRatio": 6.186166585484902
|
| 159 |
+
},
|
| 160 |
+
{
|
| 161 |
+
"Scope": "group",
|
| 162 |
+
"GroupName": "embeddings",
|
| 163 |
+
"RemovedCandidate": "IQ2_XXS",
|
| 164 |
+
"AcceptedAnchor": "IQ4_XS",
|
| 165 |
+
"Reason": "Reason: small size gain (0.15%) but disproportionate damage (KLD x2.43, |PPL| x6.19).",
|
| 166 |
+
"RemovedSizeBytes": 68056619424,
|
| 167 |
+
"RemovedSizeGB": 68.05661942399999,
|
| 168 |
+
"RemovedSizeGiB": 63.382666021585464,
|
| 169 |
+
"RemovedKld": 0.014153,
|
| 170 |
+
"RemovedPplDeltaPercent": 1.1165992614735287,
|
| 171 |
+
"AnchorSizeBytes": 68159920544,
|
| 172 |
+
"AnchorSizeGB": 68.15992054399999,
|
| 173 |
+
"AnchorSizeGiB": 63.47887268662453,
|
| 174 |
+
"AnchorKld": 0.005831,
|
| 175 |
+
"AnchorPplDeltaPercent": 0.18049938456127174,
|
| 176 |
+
"SizeDeltaPercent": 0.1515569841859116,
|
| 177 |
+
"KldRatio": 2.427199451209055,
|
| 178 |
+
"PplAbsRatio": 6.186166585484902
|
| 179 |
+
},
|
| 180 |
+
{
|
| 181 |
+
"Scope": "group",
|
| 182 |
+
"GroupName": "lm_head",
|
| 183 |
+
"RemovedCandidate": "IQ3_XXS",
|
| 184 |
+
"AcceptedAnchor": "Q6_K",
|
| 185 |
+
"Reason": "Reason: small size gain (0.10%) but disproportionate damage (KLD x1.27, |PPL| x75.76).",
|
| 186 |
+
"RemovedSizeBytes": 68239382944,
|
| 187 |
+
"RemovedSizeGB": 68.23938294400001,
|
| 188 |
+
"RemovedSizeGiB": 63.55287781357765,
|
| 189 |
+
"RemovedKld": 0.005255,
|
| 190 |
+
"RemovedPplDeltaPercent": 0.049287849481275035,
|
| 191 |
+
"AnchorSizeBytes": 68306925984,
|
| 192 |
+
"AnchorSizeGB": 68.306925984,
|
| 193 |
+
"AnchorSizeGiB": 63.61578217148781,
|
| 194 |
+
"AnchorKld": 0.004131,
|
| 195 |
+
"AnchorPplDeltaPercent": 0.000650606646735409,
|
| 196 |
+
"SizeDeltaPercent": 0.09888168590081343,
|
| 197 |
+
"KldRatio": 1.272089082546599,
|
| 198 |
+
"PplAbsRatio": 75.75675675708182
|
| 199 |
+
},
|
| 200 |
+
{
|
| 201 |
+
"Scope": "group",
|
| 202 |
+
"GroupName": "lm_head",
|
| 203 |
+
"RemovedCandidate": "IQ2_M",
|
| 204 |
+
"AcceptedAnchor": "Q6_K",
|
| 205 |
+
"Reason": "Reason: small size gain (0.10%) but disproportionate damage (KLD x1.27, |PPL| x75.76).",
|
| 206 |
+
"RemovedSizeBytes": 68239382944,
|
| 207 |
+
"RemovedSizeGB": 68.23938294400001,
|
| 208 |
+
"RemovedSizeGiB": 63.55287781357765,
|
| 209 |
+
"RemovedKld": 0.005255,
|
| 210 |
+
"RemovedPplDeltaPercent": 0.049287849481275035,
|
| 211 |
+
"AnchorSizeBytes": 68306925984,
|
| 212 |
+
"AnchorSizeGB": 68.306925984,
|
| 213 |
+
"AnchorSizeGiB": 63.61578217148781,
|
| 214 |
+
"AnchorKld": 0.004131,
|
| 215 |
+
"AnchorPplDeltaPercent": 0.000650606646735409,
|
| 216 |
+
"SizeDeltaPercent": 0.09888168590081343,
|
| 217 |
+
"KldRatio": 1.272089082546599,
|
| 218 |
+
"PplAbsRatio": 75.75675675708182
|
| 219 |
+
},
|
| 220 |
+
{
|
| 221 |
+
"Scope": "group",
|
| 222 |
+
"GroupName": "lm_head",
|
| 223 |
+
"RemovedCandidate": "IQ2_S",
|
| 224 |
+
"AcceptedAnchor": "Q6_K",
|
| 225 |
+
"Reason": "Reason: small size gain (0.10%) but disproportionate damage (KLD x1.27, |PPL| x75.76).",
|
| 226 |
+
"RemovedSizeBytes": 68239382944,
|
| 227 |
+
"RemovedSizeGB": 68.23938294400001,
|
| 228 |
+
"RemovedSizeGiB": 63.55287781357765,
|
| 229 |
+
"RemovedKld": 0.005255,
|
| 230 |
+
"RemovedPplDeltaPercent": 0.049287849481275035,
|
| 231 |
+
"AnchorSizeBytes": 68306925984,
|
| 232 |
+
"AnchorSizeGB": 68.306925984,
|
| 233 |
+
"AnchorSizeGiB": 63.61578217148781,
|
| 234 |
+
"AnchorKld": 0.004131,
|
| 235 |
+
"AnchorPplDeltaPercent": 0.000650606646735409,
|
| 236 |
+
"SizeDeltaPercent": 0.09888168590081343,
|
| 237 |
+
"KldRatio": 1.272089082546599,
|
| 238 |
+
"PplAbsRatio": 75.75675675708182
|
| 239 |
+
},
|
| 240 |
+
{
|
| 241 |
+
"Scope": "group",
|
| 242 |
+
"GroupName": "lm_head",
|
| 243 |
+
"RemovedCandidate": "IQ2_XS",
|
| 244 |
+
"AcceptedAnchor": "Q6_K",
|
| 245 |
+
"Reason": "Reason: small size gain (0.10%) but disproportionate damage (KLD x1.27, |PPL| x75.76).",
|
| 246 |
+
"RemovedSizeBytes": 68239382944,
|
| 247 |
+
"RemovedSizeGB": 68.23938294400001,
|
| 248 |
+
"RemovedSizeGiB": 63.55287781357765,
|
| 249 |
+
"RemovedKld": 0.005255,
|
| 250 |
+
"RemovedPplDeltaPercent": 0.049287849481275035,
|
| 251 |
+
"AnchorSizeBytes": 68306925984,
|
| 252 |
+
"AnchorSizeGB": 68.306925984,
|
| 253 |
+
"AnchorSizeGiB": 63.61578217148781,
|
| 254 |
+
"AnchorKld": 0.004131,
|
| 255 |
+
"AnchorPplDeltaPercent": 0.000650606646735409,
|
| 256 |
+
"SizeDeltaPercent": 0.09888168590081343,
|
| 257 |
+
"KldRatio": 1.272089082546599,
|
| 258 |
+
"PplAbsRatio": 75.75675675708182
|
| 259 |
+
},
|
| 260 |
+
{
|
| 261 |
+
"Scope": "group",
|
| 262 |
+
"GroupName": "lm_head",
|
| 263 |
+
"RemovedCandidate": "IQ2_XXS",
|
| 264 |
+
"AcceptedAnchor": "Q6_K",
|
| 265 |
+
"Reason": "Reason: small size gain (0.10%) but disproportionate damage (KLD x1.27, |PPL| x75.76).",
|
| 266 |
+
"RemovedSizeBytes": 68239382944,
|
| 267 |
+
"RemovedSizeGB": 68.23938294400001,
|
| 268 |
+
"RemovedSizeGiB": 63.55287781357765,
|
| 269 |
+
"RemovedKld": 0.005255,
|
| 270 |
+
"RemovedPplDeltaPercent": 0.049287849481275035,
|
| 271 |
+
"AnchorSizeBytes": 68306925984,
|
| 272 |
+
"AnchorSizeGB": 68.306925984,
|
| 273 |
+
"AnchorSizeGiB": 63.61578217148781,
|
| 274 |
+
"AnchorKld": 0.004131,
|
| 275 |
+
"AnchorPplDeltaPercent": 0.000650606646735409,
|
| 276 |
+
"SizeDeltaPercent": 0.09888168590081343,
|
| 277 |
+
"KldRatio": 1.272089082546599,
|
| 278 |
+
"PplAbsRatio": 75.75675675708182
|
| 279 |
+
},
|
| 280 |
+
{
|
| 281 |
+
"Scope": "group",
|
| 282 |
+
"GroupName": "lm_head",
|
| 283 |
+
"RemovedCandidate": "UD-IQ2_M",
|
| 284 |
+
"AcceptedAnchor": "Q6_K",
|
| 285 |
+
"Reason": "Reason: small size gain (0.19%) but disproportionate damage (KLD x2.37, |PPL| x1031.73).",
|
| 286 |
+
"RemovedSizeBytes": 68175813024,
|
| 287 |
+
"RemovedSizeGB": 68.175813024,
|
| 288 |
+
"RemovedSizeGiB": 63.49367371201515,
|
| 289 |
+
"RemovedKld": 0.009785,
|
| 290 |
+
"RemovedPplDeltaPercent": 0.6712502197995377,
|
| 291 |
+
"AnchorSizeBytes": 68306925984,
|
| 292 |
+
"AnchorSizeGB": 68.306925984,
|
| 293 |
+
"AnchorSizeGiB": 63.61578217148781,
|
| 294 |
+
"AnchorKld": 0.004131,
|
| 295 |
+
"AnchorPplDeltaPercent": 0.000650606646735409,
|
| 296 |
+
"SizeDeltaPercent": 0.1919468020427555,
|
| 297 |
+
"KldRatio": 2.3686758654078917,
|
| 298 |
+
"PplAbsRatio": 1031.7297297341079
|
| 299 |
+
},
|
| 300 |
+
{
|
| 301 |
+
"Scope": "group",
|
| 302 |
+
"GroupName": "lm_head",
|
| 303 |
+
"RemovedCandidate": "UD-Q2_K_XL",
|
| 304 |
+
"AcceptedAnchor": "Q6_K",
|
| 305 |
+
"Reason": "Reason: small size gain (0.19%) but disproportionate damage (KLD x2.37, |PPL| x1031.73).",
|
| 306 |
+
"RemovedSizeBytes": 68175813024,
|
| 307 |
+
"RemovedSizeGB": 68.175813024,
|
| 308 |
+
"RemovedSizeGiB": 63.49367371201515,
|
| 309 |
+
"RemovedKld": 0.009785,
|
| 310 |
+
"RemovedPplDeltaPercent": 0.6712502197995377,
|
| 311 |
+
"AnchorSizeBytes": 68306925984,
|
| 312 |
+
"AnchorSizeGB": 68.306925984,
|
| 313 |
+
"AnchorSizeGiB": 63.61578217148781,
|
| 314 |
+
"AnchorKld": 0.004131,
|
| 315 |
+
"AnchorPplDeltaPercent": 0.000650606646735409,
|
| 316 |
+
"SizeDeltaPercent": 0.1919468020427555,
|
| 317 |
+
"KldRatio": 2.3686758654078917,
|
| 318 |
+
"PplAbsRatio": 1031.7297297341079
|
| 319 |
+
},
|
| 320 |
+
{
|
| 321 |
+
"Scope": "group",
|
| 322 |
+
"GroupName": "lm_head",
|
| 323 |
+
"RemovedCandidate": "UD-IQ2_XXS",
|
| 324 |
+
"AcceptedAnchor": "Q6_K",
|
| 325 |
+
"Reason": "Reason: small size gain (0.19%) but disproportionate damage (KLD x2.37, |PPL| x1031.73).",
|
| 326 |
+
"RemovedSizeBytes": 68175813024,
|
| 327 |
+
"RemovedSizeGB": 68.175813024,
|
| 328 |
+
"RemovedSizeGiB": 63.49367371201515,
|
| 329 |
+
"RemovedKld": 0.009785,
|
| 330 |
+
"RemovedPplDeltaPercent": 0.6712502197995377,
|
| 331 |
+
"AnchorSizeBytes": 68306925984,
|
| 332 |
+
"AnchorSizeGB": 68.306925984,
|
| 333 |
+
"AnchorSizeGiB": 63.61578217148781,
|
| 334 |
+
"AnchorKld": 0.004131,
|
| 335 |
+
"AnchorPplDeltaPercent": 0.000650606646735409,
|
| 336 |
+
"SizeDeltaPercent": 0.1919468020427555,
|
| 337 |
+
"KldRatio": 2.3686758654078917,
|
| 338 |
+
"PplAbsRatio": 1031.7297297341079
|
| 339 |
+
},
|
| 340 |
+
{
|
| 341 |
+
"Scope": "group",
|
| 342 |
+
"GroupName": "attn_q",
|
| 343 |
+
"RemovedCandidate": "Q5_K_S",
|
| 344 |
+
"AcceptedAnchor": "UD-Q2_K_XL",
|
| 345 |
+
"Reason": "Reason: small size gain (0.00%) but disproportionate damage (KLD x1.00, |PPL| x4.09).",
|
| 346 |
+
"RemovedSizeBytes": 68026063264,
|
| 347 |
+
"RemovedSizeGB": 68.026063264,
|
| 348 |
+
"RemovedSizeGiB": 63.3542083799839,
|
| 349 |
+
"RemovedKld": 0.006531,
|
| 350 |
+
"RemovedPplDeltaPercent": -0.1273782310532799,
|
| 351 |
+
"AnchorSizeBytes": 68028291488,
|
| 352 |
+
"AnchorSizeGB": 68.02829148800001,
|
| 353 |
+
"AnchorSizeGiB": 63.3562835752964,
|
| 354 |
+
"AnchorKld": 0.006523,
|
| 355 |
+
"AnchorPplDeltaPercent": 0.03117636715315675,
|
| 356 |
+
"SizeDeltaPercent": 0.0032754372500932976,
|
| 357 |
+
"KldRatio": 1.0012264295569524,
|
| 358 |
+
"PplAbsRatio": 4.085730400451172
|
| 359 |
+
},
|
| 360 |
+
{
|
| 361 |
+
"Scope": "group",
|
| 362 |
+
"GroupName": "attn_q",
|
| 363 |
+
"RemovedCandidate": "UD-IQ2_M",
|
| 364 |
+
"AcceptedAnchor": "UD-Q2_K_XL",
|
| 365 |
+
"Reason": "Reason: small size gain (0.00%) but disproportionate damage (KLD x1.00, |PPL| x4.09).",
|
| 366 |
+
"RemovedSizeBytes": 68026063264,
|
| 367 |
+
"RemovedSizeGB": 68.026063264,
|
| 368 |
+
"RemovedSizeGiB": 63.3542083799839,
|
| 369 |
+
"RemovedKld": 0.006531,
|
| 370 |
+
"RemovedPplDeltaPercent": -0.1273782310532799,
|
| 371 |
+
"AnchorSizeBytes": 68028291488,
|
| 372 |
+
"AnchorSizeGB": 68.02829148800001,
|
| 373 |
+
"AnchorSizeGiB": 63.3562835752964,
|
| 374 |
+
"AnchorKld": 0.006523,
|
| 375 |
+
"AnchorPplDeltaPercent": 0.03117636715315675,
|
| 376 |
+
"SizeDeltaPercent": 0.0032754372500932976,
|
| 377 |
+
"KldRatio": 1.0012264295569524,
|
| 378 |
+
"PplAbsRatio": 4.085730400451172
|
| 379 |
+
},
|
| 380 |
+
{
|
| 381 |
+
"Scope": "group",
|
| 382 |
+
"GroupName": "attn_q",
|
| 383 |
+
"RemovedCandidate": "UD-IQ2_XXS",
|
| 384 |
+
"AcceptedAnchor": "UD-Q2_K_XL",
|
| 385 |
+
"Reason": "Reason: small size gain (0.00%) but disproportionate damage (KLD x1.00, |PPL| x4.09).",
|
| 386 |
+
"RemovedSizeBytes": 68026063264,
|
| 387 |
+
"RemovedSizeGB": 68.026063264,
|
| 388 |
+
"RemovedSizeGiB": 63.3542083799839,
|
| 389 |
+
"RemovedKld": 0.006531,
|
| 390 |
+
"RemovedPplDeltaPercent": -0.1273782310532799,
|
| 391 |
+
"AnchorSizeBytes": 68028291488,
|
| 392 |
+
"AnchorSizeGB": 68.02829148800001,
|
| 393 |
+
"AnchorSizeGiB": 63.3562835752964,
|
| 394 |
+
"AnchorKld": 0.006523,
|
| 395 |
+
"AnchorPplDeltaPercent": 0.03117636715315675,
|
| 396 |
+
"SizeDeltaPercent": 0.0032754372500932976,
|
| 397 |
+
"KldRatio": 1.0012264295569524,
|
| 398 |
+
"PplAbsRatio": 4.085730400451172
|
| 399 |
+
},
|
| 400 |
+
{
|
| 401 |
+
"Scope": "group",
|
| 402 |
+
"GroupName": "attn_q",
|
| 403 |
+
"RemovedCandidate": "IQ3_M",
|
| 404 |
+
"AcceptedAnchor": "Q4_K_S",
|
| 405 |
+
"Reason": "Reason: small size gain (0.04%) but disproportionate damage (KLD x1.39, |PPL| x4.21).",
|
| 406 |
+
"RemovedSizeBytes": 67919894944,
|
| 407 |
+
"RemovedSizeGB": 67.919894944,
|
| 408 |
+
"RemovedSizeGiB": 63.2553314268589,
|
| 409 |
+
"RemovedKld": 0.013573,
|
| 410 |
+
"RemovedPplDeltaPercent": 0.5600316511341542,
|
| 411 |
+
"AnchorSizeBytes": 67948468640,
|
| 412 |
+
"AnchorSizeGB": 67.94846864,
|
| 413 |
+
"AnchorSizeGiB": 63.2819427549839,
|
| 414 |
+
"AnchorKld": 0.009742,
|
| 415 |
+
"AnchorPplDeltaPercent": 0.13288201160540478,
|
| 416 |
+
"SizeDeltaPercent": 0.04205200878240131,
|
| 417 |
+
"KldRatio": 1.3932457400944365,
|
| 418 |
+
"PplAbsRatio": 4.214503109699882
|
| 419 |
+
},
|
| 420 |
+
{
|
| 421 |
+
"Scope": "group",
|
| 422 |
+
"GroupName": "attn_q",
|
| 423 |
+
"RemovedCandidate": "IQ3_S",
|
| 424 |
+
"AcceptedAnchor": "Q4_K_S",
|
| 425 |
+
"Reason": "Reason: small size gain (0.04%) but disproportionate damage (KLD x1.39, |PPL| x4.21).",
|
| 426 |
+
"RemovedSizeBytes": 67919894944,
|
| 427 |
+
"RemovedSizeGB": 67.919894944,
|
| 428 |
+
"RemovedSizeGiB": 63.2553314268589,
|
| 429 |
+
"RemovedKld": 0.013573,
|
| 430 |
+
"RemovedPplDeltaPercent": 0.5600316511341542,
|
| 431 |
+
"AnchorSizeBytes": 67948468640,
|
| 432 |
+
"AnchorSizeGB": 67.94846864,
|
| 433 |
+
"AnchorSizeGiB": 63.2819427549839,
|
| 434 |
+
"AnchorKld": 0.009742,
|
| 435 |
+
"AnchorPplDeltaPercent": 0.13288201160540478,
|
| 436 |
+
"SizeDeltaPercent": 0.04205200878240131,
|
| 437 |
+
"KldRatio": 1.3932457400944365,
|
| 438 |
+
"PplAbsRatio": 4.214503109699882
|
| 439 |
+
},
|
| 440 |
+
{
|
| 441 |
+
"Scope": "group",
|
| 442 |
+
"GroupName": "attn_q",
|
| 443 |
+
"RemovedCandidate": "IQ3_XS",
|
| 444 |
+
"AcceptedAnchor": "Q4_K_S",
|
| 445 |
+
"Reason": "Reason: small size gain (0.05%) but disproportionate damage (KLD x1.60, |PPL| x5.56).",
|
| 446 |
+
"RemovedSizeBytes": 67912030624,
|
| 447 |
+
"RemovedSizeGB": 67.912030624,
|
| 448 |
+
"RemovedSizeGiB": 63.2480072081089,
|
| 449 |
+
"RemovedKld": 0.01554,
|
| 450 |
+
"RemovedPplDeltaPercent": 0.7385792157552198,
|
| 451 |
+
"AnchorSizeBytes": 67948468640,
|
| 452 |
+
"AnchorSizeGB": 67.94846864,
|
| 453 |
+
"AnchorSizeGiB": 63.2819427549839,
|
| 454 |
+
"AnchorKld": 0.009742,
|
| 455 |
+
"AnchorPplDeltaPercent": 0.13288201160540478,
|
| 456 |
+
"SizeDeltaPercent": 0.05362595615370443,
|
| 457 |
+
"KldRatio": 1.5951549989735165,
|
| 458 |
+
"PplAbsRatio": 5.558157999206411
|
| 459 |
+
},
|
| 460 |
+
{
|
| 461 |
+
"Scope": "group",
|
| 462 |
+
"GroupName": "attn_q",
|
| 463 |
+
"RemovedCandidate": "IQ3_XXS",
|
| 464 |
+
"AcceptedAnchor": "Q4_K_S",
|
| 465 |
+
"Reason": "Reason: small size gain (0.07%) but disproportionate damage (KLD x2.53, |PPL| x10.80).",
|
| 466 |
+
"RemovedSizeBytes": 67901544864,
|
| 467 |
+
"RemovedSizeGB": 67.901544864,
|
| 468 |
+
"RemovedSizeGiB": 63.2382415831089,
|
| 469 |
+
"RemovedKld": 0.024609,
|
| 470 |
+
"RemovedPplDeltaPercent": 1.4350272551433008,
|
| 471 |
+
"AnchorSizeBytes": 67948468640,
|
| 472 |
+
"AnchorSizeGB": 67.94846864,
|
| 473 |
+
"AnchorSizeGiB": 63.2819427549839,
|
| 474 |
+
"AnchorKld": 0.009742,
|
| 475 |
+
"AnchorPplDeltaPercent": 0.13288201160540478,
|
| 476 |
+
"SizeDeltaPercent": 0.06905788598210857,
|
| 477 |
+
"KldRatio": 2.526072675015397,
|
| 478 |
+
"PplAbsRatio": 10.799258965198666
|
| 479 |
+
},
|
| 480 |
+
{
|
| 481 |
+
"Scope": "group",
|
| 482 |
+
"GroupName": "attn_q",
|
| 483 |
+
"RemovedCandidate": "IQ2_M",
|
| 484 |
+
"AcceptedAnchor": "Q4_K_S",
|
| 485 |
+
"Reason": "Reason: small size gain (0.07%) but disproportionate damage (KLD x2.53, |PPL| x10.80).",
|
| 486 |
+
"RemovedSizeBytes": 67901544864,
|
| 487 |
+
"RemovedSizeGB": 67.901544864,
|
| 488 |
+
"RemovedSizeGiB": 63.2382415831089,
|
| 489 |
+
"RemovedKld": 0.024609,
|
| 490 |
+
"RemovedPplDeltaPercent": 1.4350272551433008,
|
| 491 |
+
"AnchorSizeBytes": 67948468640,
|
| 492 |
+
"AnchorSizeGB": 67.94846864,
|
| 493 |
+
"AnchorSizeGiB": 63.2819427549839,
|
| 494 |
+
"AnchorKld": 0.009742,
|
| 495 |
+
"AnchorPplDeltaPercent": 0.13288201160540478,
|
| 496 |
+
"SizeDeltaPercent": 0.06905788598210857,
|
| 497 |
+
"KldRatio": 2.526072675015397,
|
| 498 |
+
"PplAbsRatio": 10.799258965198666
|
| 499 |
+
},
|
| 500 |
+
{
|
| 501 |
+
"Scope": "group",
|
| 502 |
+
"GroupName": "attn_q",
|
| 503 |
+
"RemovedCandidate": "IQ2_S",
|
| 504 |
+
"AcceptedAnchor": "Q4_K_S",
|
| 505 |
+
"Reason": "Reason: small size gain (0.08%) but disproportionate damage (KLD x2.88, |PPL| x10.88).",
|
| 506 |
+
"RemovedSizeBytes": 67896301984,
|
| 507 |
+
"RemovedSizeGB": 67.89630198399999,
|
| 508 |
+
"RemovedSizeGiB": 63.2333587706089,
|
| 509 |
+
"RemovedKld": 0.028013,
|
| 510 |
+
"RemovedPplDeltaPercent": 1.4452435378934394,
|
| 511 |
+
"AnchorSizeBytes": 67948468640,
|
| 512 |
+
"AnchorSizeGB": 67.94846864,
|
| 513 |
+
"AnchorSizeGiB": 63.2819427549839,
|
| 514 |
+
"AnchorKld": 0.009742,
|
| 515 |
+
"AnchorPplDeltaPercent": 0.13288201160540478,
|
| 516 |
+
"SizeDeltaPercent": 0.07677385089631064,
|
| 517 |
+
"KldRatio": 2.8754875795524533,
|
| 518 |
+
"PplAbsRatio": 10.876141325923879
|
| 519 |
+
},
|
| 520 |
+
{
|
| 521 |
+
"Scope": "group",
|
| 522 |
+
"GroupName": "attn_q",
|
| 523 |
+
"RemovedCandidate": "IQ2_XS",
|
| 524 |
+
"AcceptedAnchor": "Q4_K_S",
|
| 525 |
+
"Reason": "Reason: small size gain (0.08%) but disproportionate damage (KLD x2.88, |PPL| x10.88).",
|
| 526 |
+
"RemovedSizeBytes": 67896301984,
|
| 527 |
+
"RemovedSizeGB": 67.89630198399999,
|
| 528 |
+
"RemovedSizeGiB": 63.2333587706089,
|
| 529 |
+
"RemovedKld": 0.028013,
|
| 530 |
+
"RemovedPplDeltaPercent": 1.4452435378934394,
|
| 531 |
+
"AnchorSizeBytes": 67948468640,
|
| 532 |
+
"AnchorSizeGB": 67.94846864,
|
| 533 |
+
"AnchorSizeGiB": 63.2819427549839,
|
| 534 |
+
"AnchorKld": 0.009742,
|
| 535 |
+
"AnchorPplDeltaPercent": 0.13288201160540478,
|
| 536 |
+
"SizeDeltaPercent": 0.07677385089631064,
|
| 537 |
+
"KldRatio": 2.8754875795524533,
|
| 538 |
+
"PplAbsRatio": 10.876141325923879
|
| 539 |
+
},
|
| 540 |
+
{
|
| 541 |
+
"Scope": "group",
|
| 542 |
+
"GroupName": "attn_q",
|
| 543 |
+
"RemovedCandidate": "IQ2_XXS",
|
| 544 |
+
"AcceptedAnchor": "Q4_K_S",
|
| 545 |
+
"Reason": "Reason: small size gain (0.08%) but disproportionate damage (KLD x3.49, |PPL| x19.55).",
|
| 546 |
+
"RemovedSizeBytes": 67891059104,
|
| 547 |
+
"RemovedSizeGB": 67.89105910399999,
|
| 548 |
+
"RemovedSizeGiB": 63.2284759581089,
|
| 549 |
+
"RemovedKld": 0.034029,
|
| 550 |
+
"RemovedPplDeltaPercent": 2.5978899243889577,
|
| 551 |
+
"AnchorSizeBytes": 67948468640,
|
| 552 |
+
"AnchorSizeGB": 67.94846864,
|
| 553 |
+
"AnchorSizeGiB": 63.2819427549839,
|
| 554 |
+
"AnchorKld": 0.009742,
|
| 555 |
+
"AnchorPplDeltaPercent": 0.13288201160540478,
|
| 556 |
+
"SizeDeltaPercent": 0.08448981581051272,
|
| 557 |
+
"KldRatio": 3.493019913775405,
|
| 558 |
+
"PplAbsRatio": 19.550350668256232
|
| 559 |
+
},
|
| 560 |
+
{
|
| 561 |
+
"Scope": "group",
|
| 562 |
+
"GroupName": "attn_kv",
|
| 563 |
+
"RemovedCandidate": "Q6_K",
|
| 564 |
+
"AcceptedAnchor": "Q8_0",
|
| 565 |
+
"Reason": "Reason: small size gain (0.01%) but disproportionate damage (KLD x0.98, |PPL| x5.55).",
|
| 566 |
+
"RemovedSizeBytes": 68882127264,
|
| 567 |
+
"RemovedSizeGB": 68.88212726399999,
|
| 568 |
+
"RemovedSizeGiB": 64.15148010849953,
|
| 569 |
+
"RemovedKld": 0.004395,
|
| 570 |
+
"RemovedPplDeltaPercent": -0.12621768946721598,
|
| 571 |
+
"AnchorSizeBytes": 68887206304,
|
| 572 |
+
"AnchorSizeGB": 68.887206304,
|
| 573 |
+
"AnchorSizeGiB": 64.1562103331089,
|
| 574 |
+
"AnchorKld": 0.004491,
|
| 575 |
+
"AnchorPplDeltaPercent": -0.02275364867242083,
|
| 576 |
+
"SizeDeltaPercent": 0.00737298008223202,
|
| 577 |
+
"KldRatio": 0.9786239144956579,
|
| 578 |
+
"PplAbsRatio": 5.547140649147911
|
| 579 |
+
},
|
| 580 |
+
{
|
| 581 |
+
"Scope": "group",
|
| 582 |
+
"GroupName": "attn_kv",
|
| 583 |
+
"RemovedCandidate": "UD-IQ3_S",
|
| 584 |
+
"AcceptedAnchor": "Q8_0",
|
| 585 |
+
"Reason": "Reason: small size gain (0.01%) but disproportionate damage (KLD x0.98, |PPL| x5.55).",
|
| 586 |
+
"RemovedSizeBytes": 68882127264,
|
| 587 |
+
"RemovedSizeGB": 68.88212726399999,
|
| 588 |
+
"RemovedSizeGiB": 64.15148010849953,
|
| 589 |
+
"RemovedKld": 0.004395,
|
| 590 |
+
"RemovedPplDeltaPercent": -0.12621768946721598,
|
| 591 |
+
"AnchorSizeBytes": 68887206304,
|
| 592 |
+
"AnchorSizeGB": 68.887206304,
|
| 593 |
+
"AnchorSizeGiB": 64.1562103331089,
|
| 594 |
+
"AnchorKld": 0.004491,
|
| 595 |
+
"AnchorPplDeltaPercent": -0.02275364867242083,
|
| 596 |
+
"SizeDeltaPercent": 0.00737298008223202,
|
| 597 |
+
"KldRatio": 0.9786239144956579,
|
| 598 |
+
"PplAbsRatio": 5.547140649147911
|
| 599 |
+
},
|
| 600 |
+
{
|
| 601 |
+
"Scope": "group",
|
| 602 |
+
"GroupName": "attn_kv",
|
| 603 |
+
"RemovedCandidate": "UD-IQ3_XXS",
|
| 604 |
+
"AcceptedAnchor": "Q8_0",
|
| 605 |
+
"Reason": "Reason: small size gain (0.01%) but disproportionate damage (KLD x0.98, |PPL| x5.55).",
|
| 606 |
+
"RemovedSizeBytes": 68882127264,
|
| 607 |
+
"RemovedSizeGB": 68.88212726399999,
|
| 608 |
+
"RemovedSizeGiB": 64.15148010849953,
|
| 609 |
+
"RemovedKld": 0.004395,
|
| 610 |
+
"RemovedPplDeltaPercent": -0.12621768946721598,
|
| 611 |
+
"AnchorSizeBytes": 68887206304,
|
| 612 |
+
"AnchorSizeGB": 68.887206304,
|
| 613 |
+
"AnchorSizeGiB": 64.1562103331089,
|
| 614 |
+
"AnchorKld": 0.004491,
|
| 615 |
+
"AnchorPplDeltaPercent": -0.02275364867242083,
|
| 616 |
+
"SizeDeltaPercent": 0.00737298008223202,
|
| 617 |
+
"KldRatio": 0.9786239144956579,
|
| 618 |
+
"PplAbsRatio": 5.547140649147911
|
| 619 |
+
},
|
| 620 |
+
{
|
| 621 |
+
"Scope": "group",
|
| 622 |
+
"GroupName": "attn_kv",
|
| 623 |
+
"RemovedCandidate": "UD-Q2_K_XL",
|
| 624 |
+
"AcceptedAnchor": "Q8_0",
|
| 625 |
+
"Reason": "Reason: small size gain (0.01%) but disproportionate damage (KLD x0.98, |PPL| x5.55).",
|
| 626 |
+
"RemovedSizeBytes": 68882127264,
|
| 627 |
+
"RemovedSizeGB": 68.88212726399999,
|
| 628 |
+
"RemovedSizeGiB": 64.15148010849953,
|
| 629 |
+
"RemovedKld": 0.004395,
|
| 630 |
+
"RemovedPplDeltaPercent": -0.12621768946721598,
|
| 631 |
+
"AnchorSizeBytes": 68887206304,
|
| 632 |
+
"AnchorSizeGB": 68.887206304,
|
| 633 |
+
"AnchorSizeGiB": 64.1562103331089,
|
| 634 |
+
"AnchorKld": 0.004491,
|
| 635 |
+
"AnchorPplDeltaPercent": -0.02275364867242083,
|
| 636 |
+
"SizeDeltaPercent": 0.00737298008223202,
|
| 637 |
+
"KldRatio": 0.9786239144956579,
|
| 638 |
+
"PplAbsRatio": 5.547140649147911
|
| 639 |
+
},
|
| 640 |
+
{
|
| 641 |
+
"Scope": "group",
|
| 642 |
+
"GroupName": "attn_kv",
|
| 643 |
+
"RemovedCandidate": "Q5_K",
|
| 644 |
+
"AcceptedAnchor": "Q8_0",
|
| 645 |
+
"Reason": "Reason: small size gain (0.01%) but disproportionate damage (KLD x1.07, |PPL| x5.86).",
|
| 646 |
+
"RemovedSizeBytes": 68880177568,
|
| 647 |
+
"RemovedSizeGB": 68.880177568,
|
| 648 |
+
"RemovedSizeGiB": 64.14966431260109,
|
| 649 |
+
"RemovedKld": 0.004803,
|
| 650 |
+
"RemovedPplDeltaPercent": 0.13332161069103765,
|
| 651 |
+
"AnchorSizeBytes": 68887206304,
|
| 652 |
+
"AnchorSizeGB": 68.887206304,
|
| 653 |
+
"AnchorSizeGiB": 64.1562103331089,
|
| 654 |
+
"AnchorKld": 0.004491,
|
| 655 |
+
"AnchorPplDeltaPercent": -0.02275364867242083,
|
| 656 |
+
"SizeDeltaPercent": 0.01020325308154044,
|
| 657 |
+
"KldRatio": 1.0694722778891115,
|
| 658 |
+
"PplAbsRatio": 5.859350850074155
|
| 659 |
+
},
|
| 660 |
+
{
|
| 661 |
+
"Scope": "group",
|
| 662 |
+
"GroupName": "attn_kv",
|
| 663 |
+
"RemovedCandidate": "Q5_K_S",
|
| 664 |
+
"AcceptedAnchor": "Q8_0",
|
| 665 |
+
"Reason": "Reason: small size gain (0.01%) but disproportionate damage (KLD x1.12, |PPL| x4.01).",
|
| 666 |
+
"RemovedSizeBytes": 68879341984,
|
| 667 |
+
"RemovedSizeGB": 68.87934198399999,
|
| 668 |
+
"RemovedSizeGiB": 64.1488861143589,
|
| 669 |
+
"RemovedKld": 0.005011,
|
| 670 |
+
"RemovedPplDeltaPercent": 0.09117285036047117,
|
| 671 |
+
"AnchorSizeBytes": 68887206304,
|
| 672 |
+
"AnchorSizeGB": 68.887206304,
|
| 673 |
+
"AnchorSizeGiB": 64.1562103331089,
|
| 674 |
+
"AnchorKld": 0.004491,
|
| 675 |
+
"AnchorPplDeltaPercent": -0.02275364867242083,
|
| 676 |
+
"SizeDeltaPercent": 0.011416227224101192,
|
| 677 |
+
"KldRatio": 1.1157871298151858,
|
| 678 |
+
"PplAbsRatio": 4.006955177741655
|
| 679 |
+
},
|
| 680 |
+
{
|
| 681 |
+
"Scope": "group",
|
| 682 |
+
"GroupName": "attn_kv",
|
| 683 |
+
"RemovedCandidate": "UD-IQ2_M",
|
| 684 |
+
"AcceptedAnchor": "Q8_0",
|
| 685 |
+
"Reason": "Reason: small size gain (0.01%) but disproportionate damage (KLD x1.12, |PPL| x4.01).",
|
| 686 |
+
"RemovedSizeBytes": 68879341984,
|
| 687 |
+
"RemovedSizeGB": 68.87934198399999,
|
| 688 |
+
"RemovedSizeGiB": 64.1488861143589,
|
| 689 |
+
"RemovedKld": 0.005011,
|
| 690 |
+
"RemovedPplDeltaPercent": 0.09117285036047117,
|
| 691 |
+
"AnchorSizeBytes": 68887206304,
|
| 692 |
+
"AnchorSizeGB": 68.887206304,
|
| 693 |
+
"AnchorSizeGiB": 64.1562103331089,
|
| 694 |
+
"AnchorKld": 0.004491,
|
| 695 |
+
"AnchorPplDeltaPercent": -0.02275364867242083,
|
| 696 |
+
"SizeDeltaPercent": 0.011416227224101192,
|
| 697 |
+
"KldRatio": 1.1157871298151858,
|
| 698 |
+
"PplAbsRatio": 4.006955177741655
|
| 699 |
+
},
|
| 700 |
+
{
|
| 701 |
+
"Scope": "group",
|
| 702 |
+
"GroupName": "attn_kv",
|
| 703 |
+
"RemovedCandidate": "UD-IQ2_XXS",
|
| 704 |
+
"AcceptedAnchor": "Q8_0",
|
| 705 |
+
"Reason": "Reason: small size gain (0.01%) but disproportionate damage (KLD x1.12, |PPL| x4.01).",
|
| 706 |
+
"RemovedSizeBytes": 68879341984,
|
| 707 |
+
"RemovedSizeGB": 68.87934198399999,
|
| 708 |
+
"RemovedSizeGiB": 64.1488861143589,
|
| 709 |
+
"RemovedKld": 0.005011,
|
| 710 |
+
"RemovedPplDeltaPercent": 0.09117285036047117,
|
| 711 |
+
"AnchorSizeBytes": 68887206304,
|
| 712 |
+
"AnchorSizeGB": 68.887206304,
|
| 713 |
+
"AnchorSizeGiB": 64.1562103331089,
|
| 714 |
+
"AnchorKld": 0.004491,
|
| 715 |
+
"AnchorPplDeltaPercent": -0.02275364867242083,
|
| 716 |
+
"SizeDeltaPercent": 0.011416227224101192,
|
| 717 |
+
"KldRatio": 1.1157871298151858,
|
| 718 |
+
"PplAbsRatio": 4.006955177741655
|
| 719 |
+
},
|
| 720 |
+
{
|
| 721 |
+
"Scope": "group",
|
| 722 |
+
"GroupName": "attn_kv",
|
| 723 |
+
"RemovedCandidate": "IQ3_XS",
|
| 724 |
+
"AcceptedAnchor": "IQ3_M",
|
| 725 |
+
"Reason": "Reason: small size gain (0.00%) but disproportionate damage (KLD x1.16, |PPL| x120.18).",
|
| 726 |
+
"RemovedSizeBytes": 68874836384,
|
| 727 |
+
"RemovedSizeGB": 68.874836384,
|
| 728 |
+
"RemovedSizeGiB": 64.14468994736671,
|
| 729 |
+
"RemovedKld": 0.008077,
|
| 730 |
+
"RemovedPplDeltaPercent": 0.3465623351503386,
|
| 731 |
+
"AnchorSizeBytes": 68875327904,
|
| 732 |
+
"AnchorSizeGB": 68.875327904,
|
| 733 |
+
"AnchorSizeGiB": 64.14514771103859,
|
| 734 |
+
"AnchorKld": 0.006972,
|
| 735 |
+
"AnchorPplDeltaPercent": 0.0028837700017554234,
|
| 736 |
+
"SizeDeltaPercent": 0.0007136372558328749,
|
| 737 |
+
"KldRatio": 1.1584911072862882,
|
| 738 |
+
"PplAbsRatio": 120.17682926841508
|
| 739 |
+
},
|
| 740 |
+
{
|
| 741 |
+
"Scope": "group",
|
| 742 |
+
"GroupName": "attn_kv",
|
| 743 |
+
"RemovedCandidate": "IQ3_XXS",
|
| 744 |
+
"AcceptedAnchor": "IQ3_M",
|
| 745 |
+
"Reason": "Reason: small size gain (0.00%) but disproportionate damage (KLD x1.59, |PPL| x135.44).",
|
| 746 |
+
"RemovedSizeBytes": 68874181024,
|
| 747 |
+
"RemovedSizeGB": 68.87418102400001,
|
| 748 |
+
"RemovedSizeGiB": 64.14407959580421,
|
| 749 |
+
"RemovedKld": 0.011101,
|
| 750 |
+
"RemovedPplDeltaPercent": 0.39057499560400344,
|
| 751 |
+
"AnchorSizeBytes": 68875327904,
|
| 752 |
+
"AnchorSizeGB": 68.875327904,
|
| 753 |
+
"AnchorSizeGiB": 64.14514771103859,
|
| 754 |
+
"AnchorKld": 0.006972,
|
| 755 |
+
"AnchorPplDeltaPercent": 0.0028837700017554234,
|
| 756 |
+
"SizeDeltaPercent": 0.0016651535969433749,
|
| 757 |
+
"KldRatio": 1.5922260470453242,
|
| 758 |
+
"PplAbsRatio": 135.43902439038155
|
| 759 |
+
},
|
| 760 |
+
{
|
| 761 |
+
"Scope": "group",
|
| 762 |
+
"GroupName": "attn_kv",
|
| 763 |
+
"RemovedCandidate": "IQ2_M",
|
| 764 |
+
"AcceptedAnchor": "IQ3_M",
|
| 765 |
+
"Reason": "Reason: small size gain (0.00%) but disproportionate damage (KLD x1.59, |PPL| x135.44).",
|
| 766 |
+
"RemovedSizeBytes": 68874181024,
|
| 767 |
+
"RemovedSizeGB": 68.87418102400001,
|
| 768 |
+
"RemovedSizeGiB": 64.14407959580421,
|
| 769 |
+
"RemovedKld": 0.011101,
|
| 770 |
+
"RemovedPplDeltaPercent": 0.39057499560400344,
|
| 771 |
+
"AnchorSizeBytes": 68875327904,
|
| 772 |
+
"AnchorSizeGB": 68.875327904,
|
| 773 |
+
"AnchorSizeGiB": 64.14514771103859,
|
| 774 |
+
"AnchorKld": 0.006972,
|
| 775 |
+
"AnchorPplDeltaPercent": 0.0028837700017554234,
|
| 776 |
+
"SizeDeltaPercent": 0.0016651535969433749,
|
| 777 |
+
"KldRatio": 1.5922260470453242,
|
| 778 |
+
"PplAbsRatio": 135.43902439038155
|
| 779 |
+
},
|
| 780 |
+
{
|
| 781 |
+
"Scope": "group",
|
| 782 |
+
"GroupName": "attn_kv",
|
| 783 |
+
"RemovedCandidate": "IQ2_S",
|
| 784 |
+
"AcceptedAnchor": "IQ3_M",
|
| 785 |
+
"Reason": "Reason: small size gain (0.00%) but disproportionate damage (KLD x1.78, |PPL| x159.16).",
|
| 786 |
+
"RemovedSizeBytes": 68873853344,
|
| 787 |
+
"RemovedSizeGB": 68.873853344,
|
| 788 |
+
"RemovedSizeGiB": 64.14377442002296,
|
| 789 |
+
"RemovedKld": 0.01244,
|
| 790 |
+
"RemovedPplDeltaPercent": 0.45899419729206936,
|
| 791 |
+
"AnchorSizeBytes": 68875327904,
|
| 792 |
+
"AnchorSizeGB": 68.875327904,
|
| 793 |
+
"AnchorSizeGiB": 64.14514771103859,
|
| 794 |
+
"AnchorKld": 0.006972,
|
| 795 |
+
"AnchorPplDeltaPercent": 0.0028837700017554234,
|
| 796 |
+
"SizeDeltaPercent": 0.002140911767498625,
|
| 797 |
+
"KldRatio": 1.7842799770510613,
|
| 798 |
+
"PplAbsRatio": 159.16463414650545
|
| 799 |
+
},
|
| 800 |
+
{
|
| 801 |
+
"Scope": "group",
|
| 802 |
+
"GroupName": "attn_kv",
|
| 803 |
+
"RemovedCandidate": "IQ2_XS",
|
| 804 |
+
"AcceptedAnchor": "IQ3_M",
|
| 805 |
+
"Reason": "Reason: small size gain (0.00%) but disproportionate damage (KLD x1.79, |PPL| x155.07).",
|
| 806 |
+
"RemovedSizeBytes": 68873853344,
|
| 807 |
+
"RemovedSizeGB": 68.873853344,
|
| 808 |
+
"RemovedSizeGiB": 64.14377442002296,
|
| 809 |
+
"RemovedKld": 0.012487,
|
| 810 |
+
"RemovedPplDeltaPercent": 0.4471953578336461,
|
| 811 |
+
"AnchorSizeBytes": 68875327904,
|
| 812 |
+
"AnchorSizeGB": 68.875327904,
|
| 813 |
+
"AnchorSizeGiB": 64.14514771103859,
|
| 814 |
+
"AnchorKld": 0.006972,
|
| 815 |
+
"AnchorPplDeltaPercent": 0.0028837700017554234,
|
| 816 |
+
"SizeDeltaPercent": 0.002140911767498625,
|
| 817 |
+
"KldRatio": 1.7910212277682158,
|
| 818 |
+
"PplAbsRatio": 155.07317073186385
|
| 819 |
+
},
|
| 820 |
+
{
|
| 821 |
+
"Scope": "group",
|
| 822 |
+
"GroupName": "attn_kv",
|
| 823 |
+
"RemovedCandidate": "IQ2_XXS",
|
| 824 |
+
"AcceptedAnchor": "IQ3_M",
|
| 825 |
+
"Reason": "Reason: small size gain (0.00%) but disproportionate damage (KLD x2.24, |PPL| x242.98).",
|
| 826 |
+
"RemovedSizeBytes": 68873525664,
|
| 827 |
+
"RemovedSizeGB": 68.873525664,
|
| 828 |
+
"RemovedSizeGiB": 64.14346924424171,
|
| 829 |
+
"RemovedKld": 0.015625,
|
| 830 |
+
"RemovedPplDeltaPercent": 0.7007033585370028,
|
| 831 |
+
"AnchorSizeBytes": 68875327904,
|
| 832 |
+
"AnchorSizeGB": 68.875327904,
|
| 833 |
+
"AnchorSizeGiB": 64.14514771103859,
|
| 834 |
+
"AnchorKld": 0.006972,
|
| 835 |
+
"AnchorPplDeltaPercent": 0.0028837700017554234,
|
| 836 |
+
"SizeDeltaPercent": 0.002616669938053875,
|
| 837 |
+
"KldRatio": 2.2411072862880093,
|
| 838 |
+
"PplAbsRatio": 242.98170731731972
|
| 839 |
+
},
|
| 840 |
+
{
|
| 841 |
+
"Scope": "group",
|
| 842 |
+
"GroupName": "attn_output",
|
| 843 |
+
"RemovedCandidate": "Q6_K",
|
| 844 |
+
"AcceptedAnchor": "Q8_0",
|
| 845 |
+
"Reason": "Reason: small size gain (0.03%) but disproportionate damage (KLD x1.07, |PPL| x3.81).",
|
| 846 |
+
"RemovedSizeBytes": 68807907744,
|
| 847 |
+
"RemovedSizeGB": 68.80790774399999,
|
| 848 |
+
"RemovedSizeGiB": 64.0823577940464,
|
| 849 |
+
"RemovedKld": 0.004456,
|
| 850 |
+
"RemovedPplDeltaPercent": -0.1593810444874346,
|
| 851 |
+
"AnchorSizeBytes": 68828223904,
|
| 852 |
+
"AnchorSizeGB": 68.828223904,
|
| 853 |
+
"AnchorSizeGiB": 64.1012786924839,
|
| 854 |
+
"AnchorKld": 0.00416,
|
| 855 |
+
"AnchorPplDeltaPercent": -0.04188500087919613,
|
| 856 |
+
"SizeDeltaPercent": 0.02951719345298886,
|
| 857 |
+
"KldRatio": 1.0711538461538461,
|
| 858 |
+
"PplAbsRatio": 3.805205709488181
|
| 859 |
+
},
|
| 860 |
+
{
|
| 861 |
+
"Scope": "group",
|
| 862 |
+
"GroupName": "attn_output",
|
| 863 |
+
"RemovedCandidate": "UD-IQ3_S",
|
| 864 |
+
"AcceptedAnchor": "Q8_0",
|
| 865 |
+
"Reason": "Reason: small size gain (0.03%) but disproportionate damage (KLD x1.07, |PPL| x3.81).",
|
| 866 |
+
"RemovedSizeBytes": 68807907744,
|
| 867 |
+
"RemovedSizeGB": 68.80790774399999,
|
| 868 |
+
"RemovedSizeGiB": 64.0823577940464,
|
| 869 |
+
"RemovedKld": 0.004456,
|
| 870 |
+
"RemovedPplDeltaPercent": -0.1593810444874346,
|
| 871 |
+
"AnchorSizeBytes": 68828223904,
|
| 872 |
+
"AnchorSizeGB": 68.828223904,
|
| 873 |
+
"AnchorSizeGiB": 64.1012786924839,
|
| 874 |
+
"AnchorKld": 0.00416,
|
| 875 |
+
"AnchorPplDeltaPercent": -0.04188500087919613,
|
| 876 |
+
"SizeDeltaPercent": 0.02951719345298886,
|
| 877 |
+
"KldRatio": 1.0711538461538461,
|
| 878 |
+
"PplAbsRatio": 3.805205709488181
|
| 879 |
+
},
|
| 880 |
+
{
|
| 881 |
+
"Scope": "group",
|
| 882 |
+
"GroupName": "attn_output",
|
| 883 |
+
"RemovedCandidate": "UD-IQ3_XXS",
|
| 884 |
+
"AcceptedAnchor": "Q8_0",
|
| 885 |
+
"Reason": "Reason: small size gain (0.03%) but disproportionate damage (KLD x1.07, |PPL| x3.81).",
|
| 886 |
+
"RemovedSizeBytes": 68807907744,
|
| 887 |
+
"RemovedSizeGB": 68.80790774399999,
|
| 888 |
+
"RemovedSizeGiB": 64.0823577940464,
|
| 889 |
+
"RemovedKld": 0.004456,
|
| 890 |
+
"RemovedPplDeltaPercent": -0.1593810444874346,
|
| 891 |
+
"AnchorSizeBytes": 68828223904,
|
| 892 |
+
"AnchorSizeGB": 68.828223904,
|
| 893 |
+
"AnchorSizeGiB": 64.1012786924839,
|
| 894 |
+
"AnchorKld": 0.00416,
|
| 895 |
+
"AnchorPplDeltaPercent": -0.04188500087919613,
|
| 896 |
+
"SizeDeltaPercent": 0.02951719345298886,
|
| 897 |
+
"KldRatio": 1.0711538461538461,
|
| 898 |
+
"PplAbsRatio": 3.805205709488181
|
| 899 |
+
},
|
| 900 |
+
{
|
| 901 |
+
"Scope": "group",
|
| 902 |
+
"GroupName": "attn_output",
|
| 903 |
+
"RemovedCandidate": "IQ3_S",
|
| 904 |
+
"AcceptedAnchor": "IQ4_XS",
|
| 905 |
+
"Reason": "Reason: small size gain (0.01%) but disproportionate damage (KLD x1.78, |PPL| x6.60).",
|
| 906 |
+
"RemovedSizeBytes": 68775139744,
|
| 907 |
+
"RemovedSizeGB": 68.775139744,
|
| 908 |
+
"RemovedSizeGiB": 64.0518402159214,
|
| 909 |
+
"RemovedKld": 0.013235,
|
| 910 |
+
"RemovedPplDeltaPercent": 0.7860383330402676,
|
| 911 |
+
"AnchorSizeBytes": 68783659424,
|
| 912 |
+
"AnchorSizeGB": 68.78365942399999,
|
| 913 |
+
"AnchorSizeGiB": 64.0597747862339,
|
| 914 |
+
"AnchorKld": 0.007429,
|
| 915 |
+
"AnchorPplDeltaPercent": 0.11907860031650744,
|
| 916 |
+
"SizeDeltaPercent": 0.01238619763959129,
|
| 917 |
+
"KldRatio": 1.7815318347018443,
|
| 918 |
+
"PplAbsRatio": 6.601004134672399
|
| 919 |
+
},
|
| 920 |
+
{
|
| 921 |
+
"Scope": "group",
|
| 922 |
+
"GroupName": "attn_output",
|
| 923 |
+
"RemovedCandidate": "IQ3_XS",
|
| 924 |
+
"AcceptedAnchor": "IQ4_XS",
|
| 925 |
+
"Reason": "Reason: small size gain (0.01%) but disproportionate damage (KLD x1.78, |PPL| x6.60).",
|
| 926 |
+
"RemovedSizeBytes": 68775139744,
|
| 927 |
+
"RemovedSizeGB": 68.775139744,
|
| 928 |
+
"RemovedSizeGiB": 64.0518402159214,
|
| 929 |
+
"RemovedKld": 0.013235,
|
| 930 |
+
"RemovedPplDeltaPercent": 0.7860383330402676,
|
| 931 |
+
"AnchorSizeBytes": 68783659424,
|
| 932 |
+
"AnchorSizeGB": 68.78365942399999,
|
| 933 |
+
"AnchorSizeGiB": 64.0597747862339,
|
| 934 |
+
"AnchorKld": 0.007429,
|
| 935 |
+
"AnchorPplDeltaPercent": 0.11907860031650744,
|
| 936 |
+
"SizeDeltaPercent": 0.01238619763959129,
|
| 937 |
+
"KldRatio": 1.7815318347018443,
|
| 938 |
+
"PplAbsRatio": 6.601004134672399
|
| 939 |
+
},
|
| 940 |
+
{
|
| 941 |
+
"Scope": "group",
|
| 942 |
+
"GroupName": "attn_output",
|
| 943 |
+
"RemovedCandidate": "IQ3_XXS",
|
| 944 |
+
"AcceptedAnchor": "IQ4_XS",
|
| 945 |
+
"Reason": "Reason: small size gain (0.01%) but disproportionate damage (KLD x1.78, |PPL| x6.60).",
|
| 946 |
+
"RemovedSizeBytes": 68775139744,
|
| 947 |
+
"RemovedSizeGB": 68.775139744,
|
| 948 |
+
"RemovedSizeGiB": 64.0518402159214,
|
| 949 |
+
"RemovedKld": 0.013235,
|
| 950 |
+
"RemovedPplDeltaPercent": 0.7860383330402676,
|
| 951 |
+
"AnchorSizeBytes": 68783659424,
|
| 952 |
+
"AnchorSizeGB": 68.78365942399999,
|
| 953 |
+
"AnchorSizeGiB": 64.0597747862339,
|
| 954 |
+
"AnchorKld": 0.007429,
|
| 955 |
+
"AnchorPplDeltaPercent": 0.11907860031650744,
|
| 956 |
+
"SizeDeltaPercent": 0.01238619763959129,
|
| 957 |
+
"KldRatio": 1.7815318347018443,
|
| 958 |
+
"PplAbsRatio": 6.601004134672399
|
| 959 |
+
},
|
| 960 |
+
{
|
| 961 |
+
"Scope": "group",
|
| 962 |
+
"GroupName": "attn_output",
|
| 963 |
+
"RemovedCandidate": "IQ2_M",
|
| 964 |
+
"AcceptedAnchor": "IQ4_XS",
|
| 965 |
+
"Reason": "Reason: small size gain (0.01%) but disproportionate damage (KLD x1.78, |PPL| x6.60).",
|
| 966 |
+
"RemovedSizeBytes": 68775139744,
|
| 967 |
+
"RemovedSizeGB": 68.775139744,
|
| 968 |
+
"RemovedSizeGiB": 64.0518402159214,
|
| 969 |
+
"RemovedKld": 0.013235,
|
| 970 |
+
"RemovedPplDeltaPercent": 0.7860383330402676,
|
| 971 |
+
"AnchorSizeBytes": 68783659424,
|
| 972 |
+
"AnchorSizeGB": 68.78365942399999,
|
| 973 |
+
"AnchorSizeGiB": 64.0597747862339,
|
| 974 |
+
"AnchorKld": 0.007429,
|
| 975 |
+
"AnchorPplDeltaPercent": 0.11907860031650744,
|
| 976 |
+
"SizeDeltaPercent": 0.01238619763959129,
|
| 977 |
+
"KldRatio": 1.7815318347018443,
|
| 978 |
+
"PplAbsRatio": 6.601004134672399
|
| 979 |
+
},
|
| 980 |
+
{
|
| 981 |
+
"Scope": "group",
|
| 982 |
+
"GroupName": "attn_output",
|
| 983 |
+
"RemovedCandidate": "IQ2_S",
|
| 984 |
+
"AcceptedAnchor": "IQ4_XS",
|
| 985 |
+
"Reason": "Reason: small size gain (0.01%) but disproportionate damage (KLD x1.78, |PPL| x6.60).",
|
| 986 |
+
"RemovedSizeBytes": 68775139744,
|
| 987 |
+
"RemovedSizeGB": 68.775139744,
|
| 988 |
+
"RemovedSizeGiB": 64.0518402159214,
|
| 989 |
+
"RemovedKld": 0.013235,
|
| 990 |
+
"RemovedPplDeltaPercent": 0.7860383330402676,
|
| 991 |
+
"AnchorSizeBytes": 68783659424,
|
| 992 |
+
"AnchorSizeGB": 68.78365942399999,
|
| 993 |
+
"AnchorSizeGiB": 64.0597747862339,
|
| 994 |
+
"AnchorKld": 0.007429,
|
| 995 |
+
"AnchorPplDeltaPercent": 0.11907860031650744,
|
| 996 |
+
"SizeDeltaPercent": 0.01238619763959129,
|
| 997 |
+
"KldRatio": 1.7815318347018443,
|
| 998 |
+
"PplAbsRatio": 6.601004134672399
|
| 999 |
+
},
|
| 1000 |
+
{
|
| 1001 |
+
"Scope": "group",
|
| 1002 |
+
"GroupName": "attn_output",
|
| 1003 |
+
"RemovedCandidate": "IQ2_XS",
|
| 1004 |
+
"AcceptedAnchor": "IQ4_XS",
|
| 1005 |
+
"Reason": "Reason: small size gain (0.03%) but disproportionate damage (KLD x5.25, |PPL| x13.90).",
|
| 1006 |
+
"RemovedSizeBytes": 68763343264,
|
| 1007 |
+
"RemovedSizeGB": 68.763343264,
|
| 1008 |
+
"RemovedSizeGiB": 64.0408538877964,
|
| 1009 |
+
"RemovedKld": 0.039017,
|
| 1010 |
+
"RemovedPplDeltaPercent": 1.6553894847898667,
|
| 1011 |
+
"AnchorSizeBytes": 68783659424,
|
| 1012 |
+
"AnchorSizeGB": 68.78365942399999,
|
| 1013 |
+
"AnchorSizeGiB": 64.0597747862339,
|
| 1014 |
+
"AnchorKld": 0.007429,
|
| 1015 |
+
"AnchorPplDeltaPercent": 0.11907860031650744,
|
| 1016 |
+
"SizeDeltaPercent": 0.029536317448256154,
|
| 1017 |
+
"KldRatio": 5.251985462377171,
|
| 1018 |
+
"PplAbsRatio": 13.90165386887224
|
| 1019 |
+
},
|
| 1020 |
+
{
|
| 1021 |
+
"Scope": "group",
|
| 1022 |
+
"GroupName": "attn_output",
|
| 1023 |
+
"RemovedCandidate": "IQ2_XXS",
|
| 1024 |
+
"AcceptedAnchor": "IQ4_XS",
|
| 1025 |
+
"Reason": "Reason: small size gain (0.03%) but disproportionate damage (KLD x6.44, |PPL| x17.41).",
|
| 1026 |
+
"RemovedSizeBytes": 68760721824,
|
| 1027 |
+
"RemovedSizeGB": 68.760721824,
|
| 1028 |
+
"RemovedSizeGiB": 64.0384124815464,
|
| 1029 |
+
"RemovedKld": 0.047855,
|
| 1030 |
+
"RemovedPplDeltaPercent": 2.0732723755934543,
|
| 1031 |
+
"AnchorSizeBytes": 68783659424,
|
| 1032 |
+
"AnchorSizeGB": 68.78365942399999,
|
| 1033 |
+
"AnchorSizeGiB": 64.0597747862339,
|
| 1034 |
+
"AnchorKld": 0.007429,
|
| 1035 |
+
"AnchorPplDeltaPercent": 0.11907860031650744,
|
| 1036 |
+
"SizeDeltaPercent": 0.033347455183515014,
|
| 1037 |
+
"KldRatio": 6.441647597254005,
|
| 1038 |
+
"PplAbsRatio": 17.410956881276377
|
| 1039 |
+
},
|
| 1040 |
+
{
|
| 1041 |
+
"Scope": "group",
|
| 1042 |
+
"GroupName": "ffn_up_gate",
|
| 1043 |
+
"RemovedCandidate": "UD-Q6_K",
|
| 1044 |
+
"AcceptedAnchor": "UD-Q6_K_XL",
|
| 1045 |
+
"Reason": "Reason: small size gain (0.30%) but disproportionate damage (KLD x0.94, |PPL| x6.19).",
|
| 1046 |
+
"RemovedSizeBytes": 43494627744,
|
| 1047 |
+
"RemovedSizeGB": 43.494627744000006,
|
| 1048 |
+
"RemovedSizeGiB": 40.5075286924839,
|
| 1049 |
+
"RemovedKld": 0.004701,
|
| 1050 |
+
"RemovedPplDeltaPercent": -0.05331457710568217,
|
| 1051 |
+
"AnchorSizeBytes": 43624651168,
|
| 1052 |
+
"AnchorSizeGB": 43.624651168,
|
| 1053 |
+
"AnchorSizeGiB": 40.6286224424839,
|
| 1054 |
+
"AnchorKld": 0.004993,
|
| 1055 |
+
"AnchorPplDeltaPercent": -0.00861614207842626,
|
| 1056 |
+
"SizeDeltaPercent": 0.2980503465787621,
|
| 1057 |
+
"KldRatio": 0.9415181253755258,
|
| 1058 |
+
"PplAbsRatio": 6.187755102039832
|
| 1059 |
+
},
|
| 1060 |
+
{
|
| 1061 |
+
"Scope": "group",
|
| 1062 |
+
"GroupName": "ffn_up_gate",
|
| 1063 |
+
"RemovedCandidate": "Q6_K",
|
| 1064 |
+
"AcceptedAnchor": "UD-Q6_K_XL",
|
| 1065 |
+
"Reason": "Reason: small size gain (0.34%) but disproportionate damage (KLD x0.95, |PPL| x10.79).",
|
| 1066 |
+
"RemovedSizeBytes": 43474311584,
|
| 1067 |
+
"RemovedSizeGB": 43.474311584,
|
| 1068 |
+
"RemovedSizeGiB": 40.4886077940464,
|
| 1069 |
+
"RemovedKld": 0.004724,
|
| 1070 |
+
"RemovedPplDeltaPercent": -0.0929664146298583,
|
| 1071 |
+
"AnchorSizeBytes": 43624651168,
|
| 1072 |
+
"AnchorSizeGB": 43.624651168,
|
| 1073 |
+
"AnchorSizeGiB": 40.6286224424839,
|
| 1074 |
+
"AnchorKld": 0.004993,
|
| 1075 |
+
"AnchorPplDeltaPercent": -0.00861614207842626,
|
| 1076 |
+
"SizeDeltaPercent": 0.3446207132316937,
|
| 1077 |
+
"KldRatio": 0.9461245744041658,
|
| 1078 |
+
"PplAbsRatio": 10.789795918365199
|
| 1079 |
+
},
|
| 1080 |
+
{
|
| 1081 |
+
"Scope": "group",
|
| 1082 |
+
"GroupName": "ffn_up_gate",
|
| 1083 |
+
"RemovedCandidate": "UD-Q5_K_M",
|
| 1084 |
+
"AcceptedAnchor": "UD-Q5_K_XL",
|
| 1085 |
+
"Reason": "Reason: small size gain (0.18%) but disproportionate damage (KLD x1.04, |PPL| x44.20).",
|
| 1086 |
+
"RemovedSizeBytes": 40642501024,
|
| 1087 |
+
"RemovedSizeGB": 40.642501024,
|
| 1088 |
+
"RemovedSizeGiB": 37.8512786924839,
|
| 1089 |
+
"RemovedKld": 0.006135,
|
| 1090 |
+
"RemovedPplDeltaPercent": -0.1927554070687557,
|
| 1091 |
+
"AnchorSizeBytes": 40713804192,
|
| 1092 |
+
"AnchorSizeGB": 40.713804192000005,
|
| 1093 |
+
"AnchorSizeGiB": 37.9176849424839,
|
| 1094 |
+
"AnchorKld": 0.005908,
|
| 1095 |
+
"AnchorPplDeltaPercent": 0.004360822929488763,
|
| 1096 |
+
"SizeDeltaPercent": 0.17513265934017194,
|
| 1097 |
+
"KldRatio": 1.0384224779959377,
|
| 1098 |
+
"PplAbsRatio": 44.201612903221736
|
| 1099 |
+
},
|
| 1100 |
+
{
|
| 1101 |
+
"Scope": "group",
|
| 1102 |
+
"GroupName": "ffn_up_gate",
|
| 1103 |
+
"RemovedCandidate": "UD-Q5_K_S",
|
| 1104 |
+
"AcceptedAnchor": "UD-Q5_K_XL",
|
| 1105 |
+
"Reason": "Reason: small size gain (0.18%) but disproportionate damage (KLD x1.04, |PPL| x44.20).",
|
| 1106 |
+
"RemovedSizeBytes": 40642501024,
|
| 1107 |
+
"RemovedSizeGB": 40.642501024,
|
| 1108 |
+
"RemovedSizeGiB": 37.8512786924839,
|
| 1109 |
+
"RemovedKld": 0.006135,
|
| 1110 |
+
"RemovedPplDeltaPercent": -0.1927554070687557,
|
| 1111 |
+
"AnchorSizeBytes": 40713804192,
|
| 1112 |
+
"AnchorSizeGB": 40.713804192000005,
|
| 1113 |
+
"AnchorSizeGiB": 37.9176849424839,
|
| 1114 |
+
"AnchorKld": 0.005908,
|
| 1115 |
+
"AnchorPplDeltaPercent": 0.004360822929488763,
|
| 1116 |
+
"SizeDeltaPercent": 0.17513265934017194,
|
| 1117 |
+
"KldRatio": 1.0384224779959377,
|
| 1118 |
+
"PplAbsRatio": 44.201612903221736
|
| 1119 |
+
},
|
| 1120 |
+
{
|
| 1121 |
+
"Scope": "group",
|
| 1122 |
+
"GroupName": "ffn_down",
|
| 1123 |
+
"RemovedCandidate": "UD-Q4_K_S",
|
| 1124 |
+
"AcceptedAnchor": "Q5_K_S",
|
| 1125 |
+
"Reason": "Reason: small size gain (2.04%) but disproportionate damage (KLD x1.30, |PPL| x8.25).",
|
| 1126 |
+
"RemovedSizeBytes": 53640124832,
|
| 1127 |
+
"RemovedSizeGB": 53.640124832,
|
| 1128 |
+
"RemovedSizeGiB": 49.9562591612339,
|
| 1129 |
+
"RemovedKld": 0.008324,
|
| 1130 |
+
"RemovedPplDeltaPercent": 0.24603481624758225,
|
| 1131 |
+
"AnchorSizeBytes": 54758955424,
|
| 1132 |
+
"AnchorSizeGB": 54.758955424,
|
| 1133 |
+
"AnchorSizeGiB": 50.9982513487339,
|
| 1134 |
+
"AnchorKld": 0.006424,
|
| 1135 |
+
"AnchorPplDeltaPercent": -0.029839985932830305,
|
| 1136 |
+
"SizeDeltaPercent": 2.043191991769868,
|
| 1137 |
+
"KldRatio": 1.2957658779576589,
|
| 1138 |
+
"PplAbsRatio": 8.245138479669718
|
| 1139 |
+
},
|
| 1140 |
+
{
|
| 1141 |
+
"Scope": "group",
|
| 1142 |
+
"GroupName": "ffn_down",
|
| 1143 |
+
"RemovedCandidate": "UD-Q3_K_XL",
|
| 1144 |
+
"AcceptedAnchor": "Q5_K_S",
|
| 1145 |
+
"Reason": "Reason: small size gain (2.53%) but disproportionate damage (KLD x1.33, |PPL| x8.08).",
|
| 1146 |
+
"RemovedSizeBytes": 53371689376,
|
| 1147 |
+
"RemovedSizeGB": 53.371689376,
|
| 1148 |
+
"RemovedSizeGiB": 49.7062591612339,
|
| 1149 |
+
"RemovedKld": 0.008546,
|
| 1150 |
+
"RemovedPplDeltaPercent": 0.24116405837874938,
|
| 1151 |
+
"AnchorSizeBytes": 54758955424,
|
| 1152 |
+
"AnchorSizeGB": 54.758955424,
|
| 1153 |
+
"AnchorSizeGiB": 50.9982513487339,
|
| 1154 |
+
"AnchorKld": 0.006424,
|
| 1155 |
+
"AnchorPplDeltaPercent": -0.029839985932830305,
|
| 1156 |
+
"SizeDeltaPercent": 2.5334048782676066,
|
| 1157 |
+
"KldRatio": 1.3303237858032377,
|
| 1158 |
+
"PplAbsRatio": 8.081909251619916
|
| 1159 |
+
},
|
| 1160 |
+
{
|
| 1161 |
+
"Scope": "group",
|
| 1162 |
+
"GroupName": "ffn_down",
|
| 1163 |
+
"RemovedCandidate": "UD-IQ4_XS",
|
| 1164 |
+
"AcceptedAnchor": "Q5_K_S",
|
| 1165 |
+
"Reason": "Reason: small size gain (2.61%) but disproportionate damage (KLD x1.35, |PPL| x5.22).",
|
| 1166 |
+
"RemovedSizeBytes": 53329746336,
|
| 1167 |
+
"RemovedSizeGB": 53.32974633600001,
|
| 1168 |
+
"RemovedSizeGiB": 49.6671966612339,
|
| 1169 |
+
"RemovedKld": 0.008649,
|
| 1170 |
+
"RemovedPplDeltaPercent": 0.15586425180235594,
|
| 1171 |
+
"AnchorSizeBytes": 54758955424,
|
| 1172 |
+
"AnchorSizeGB": 54.758955424,
|
| 1173 |
+
"AnchorSizeGiB": 50.9982513487339,
|
| 1174 |
+
"AnchorKld": 0.006424,
|
| 1175 |
+
"AnchorPplDeltaPercent": -0.029839985932830305,
|
| 1176 |
+
"SizeDeltaPercent": 2.610000641782878,
|
| 1177 |
+
"KldRatio": 1.3463574097135742,
|
| 1178 |
+
"PplAbsRatio": 5.223335297583779
|
| 1179 |
+
},
|
| 1180 |
+
{
|
| 1181 |
+
"Scope": "group",
|
| 1182 |
+
"GroupName": "ffn_down",
|
| 1183 |
+
"RemovedCandidate": "UD-Q3_K_M",
|
| 1184 |
+
"AcceptedAnchor": "Q5_K_S",
|
| 1185 |
+
"Reason": "Reason: small size gain (2.61%) but disproportionate damage (KLD x1.35, |PPL| x5.22).",
|
| 1186 |
+
"RemovedSizeBytes": 53329746336,
|
| 1187 |
+
"RemovedSizeGB": 53.32974633600001,
|
| 1188 |
+
"RemovedSizeGiB": 49.6671966612339,
|
| 1189 |
+
"RemovedKld": 0.008649,
|
| 1190 |
+
"RemovedPplDeltaPercent": 0.15586425180235594,
|
| 1191 |
+
"AnchorSizeBytes": 54758955424,
|
| 1192 |
+
"AnchorSizeGB": 54.758955424,
|
| 1193 |
+
"AnchorSizeGiB": 50.9982513487339,
|
| 1194 |
+
"AnchorKld": 0.006424,
|
| 1195 |
+
"AnchorPplDeltaPercent": -0.029839985932830305,
|
| 1196 |
+
"SizeDeltaPercent": 2.610000641782878,
|
| 1197 |
+
"KldRatio": 1.3463574097135742,
|
| 1198 |
+
"PplAbsRatio": 5.223335297583779
|
| 1199 |
+
},
|
| 1200 |
+
{
|
| 1201 |
+
"Scope": "group",
|
| 1202 |
+
"GroupName": "ffn_down",
|
| 1203 |
+
"RemovedCandidate": "IQ4_XS",
|
| 1204 |
+
"AcceptedAnchor": "Q5_K_S",
|
| 1205 |
+
"Reason": "Reason: small size gain (3.08%) but disproportionate damage (KLD x1.65, |PPL| x7.94).",
|
| 1206 |
+
"RemovedSizeBytes": 53074680224,
|
| 1207 |
+
"RemovedSizeGB": 53.074680224,
|
| 1208 |
+
"RemovedSizeGiB": 49.4296478331089,
|
| 1209 |
+
"RemovedKld": 0.010597,
|
| 1210 |
+
"RemovedPplDeltaPercent": 0.2369439071566675,
|
| 1211 |
+
"AnchorSizeBytes": 54758955424,
|
| 1212 |
+
"AnchorSizeGB": 54.758955424,
|
| 1213 |
+
"AnchorSizeGiB": 50.9982513487339,
|
| 1214 |
+
"AnchorKld": 0.006424,
|
| 1215 |
+
"AnchorPplDeltaPercent": -0.029839985932830305,
|
| 1216 |
+
"SizeDeltaPercent": 3.075798628660123,
|
| 1217 |
+
"KldRatio": 1.6495952677459527,
|
| 1218 |
+
"PplAbsRatio": 7.940483205656575
|
| 1219 |
+
},
|
| 1220 |
+
{
|
| 1221 |
+
"Scope": "group",
|
| 1222 |
+
"GroupName": "ffn_down",
|
| 1223 |
+
"RemovedCandidate": "IQ3_XXS",
|
| 1224 |
+
"AcceptedAnchor": "UD-IQ3_XXS",
|
| 1225 |
+
"Reason": "Reason: small size gain (0.27%) but disproportionate damage (KLD x1.24, |PPL| x31.79).",
|
| 1226 |
+
"RemovedSizeBytes": 51474618784,
|
| 1227 |
+
"RemovedSizeGB": 51.474618784,
|
| 1228 |
+
"RemovedSizeGiB": 47.93947449326515,
|
| 1229 |
+
"RemovedKld": 0.030482,
|
| 1230 |
+
"RemovedPplDeltaPercent": 0.6523298751538492,
|
| 1231 |
+
"AnchorSizeBytes": 51612506528,
|
| 1232 |
+
"AnchorSizeGB": 51.612506528,
|
| 1233 |
+
"AnchorSizeGiB": 48.06789246201515,
|
| 1234 |
+
"AnchorKld": 0.024661,
|
| 1235 |
+
"AnchorPplDeltaPercent": 0.020520485317385193,
|
| 1236 |
+
"SizeDeltaPercent": 0.2671595573937013,
|
| 1237 |
+
"KldRatio": 1.2360407120554722,
|
| 1238 |
+
"PplAbsRatio": 31.78920308484068
|
| 1239 |
+
},
|
| 1240 |
+
{
|
| 1241 |
+
"Scope": "group",
|
| 1242 |
+
"GroupName": "ffn_down",
|
| 1243 |
+
"RemovedCandidate": "UD-IQ2_XXS",
|
| 1244 |
+
"AcceptedAnchor": "UD-IQ3_XXS",
|
| 1245 |
+
"Reason": "Reason: small size gain (1.36%) but disproportionate damage (KLD x1.60, |PPL| x80.01).",
|
| 1246 |
+
"RemovedSizeBytes": 50909960608,
|
| 1247 |
+
"RemovedSizeGB": 50.909960608,
|
| 1248 |
+
"RemovedSizeGiB": 47.41359558701515,
|
| 1249 |
+
"RemovedKld": 0.039413,
|
| 1250 |
+
"RemovedPplDeltaPercent": 1.6418498329523399,
|
| 1251 |
+
"AnchorSizeBytes": 51612506528,
|
| 1252 |
+
"AnchorSizeGB": 51.612506528,
|
| 1253 |
+
"AnchorSizeGiB": 48.06789246201515,
|
| 1254 |
+
"AnchorKld": 0.024661,
|
| 1255 |
+
"AnchorPplDeltaPercent": 0.020520485317385193,
|
| 1256 |
+
"SizeDeltaPercent": 1.3611931821580219,
|
| 1257 |
+
"KldRatio": 1.5981914764202587,
|
| 1258 |
+
"PplAbsRatio": 80.01028277637009
|
| 1259 |
+
},
|
| 1260 |
+
{
|
| 1261 |
+
"Scope": "group",
|
| 1262 |
+
"GroupName": "ffn_down",
|
| 1263 |
+
"RemovedCandidate": "IQ2_M",
|
| 1264 |
+
"AcceptedAnchor": "UD-IQ3_XXS",
|
| 1265 |
+
"Reason": "Reason: small size gain (1.40%) but disproportionate damage (KLD x2.02, |PPL| x130.13).",
|
| 1266 |
+
"RemovedSizeBytes": 50889218464,
|
| 1267 |
+
"RemovedSizeGB": 50.889218464,
|
| 1268 |
+
"RemovedSizeGiB": 47.39427796006203,
|
| 1269 |
+
"RemovedKld": 0.049787,
|
| 1270 |
+
"RemovedPplDeltaPercent": 2.6704061895551265,
|
| 1271 |
+
"AnchorSizeBytes": 51612506528,
|
| 1272 |
+
"AnchorSizeGB": 51.612506528,
|
| 1273 |
+
"AnchorSizeGiB": 48.06789246201515,
|
| 1274 |
+
"AnchorKld": 0.024661,
|
| 1275 |
+
"AnchorPplDeltaPercent": 0.020520485317385193,
|
| 1276 |
+
"SizeDeltaPercent": 1.4013813950454301,
|
| 1277 |
+
"KldRatio": 2.018855683062325,
|
| 1278 |
+
"PplAbsRatio": 130.13367609257892
|
| 1279 |
+
},
|
| 1280 |
+
{
|
| 1281 |
+
"Scope": "group",
|
| 1282 |
+
"GroupName": "ffn_down",
|
| 1283 |
+
"RemovedCandidate": "IQ2_S",
|
| 1284 |
+
"AcceptedAnchor": "UD-IQ3_XXS",
|
| 1285 |
+
"Reason": "Reason: small size gain (2.01%) but disproportionate damage (KLD x2.64, |PPL| x206.40).",
|
| 1286 |
+
"RemovedSizeBytes": 50577594784,
|
| 1287 |
+
"RemovedSizeGB": 50.577594784,
|
| 1288 |
+
"RemovedSizeGiB": 47.10405579209328,
|
| 1289 |
+
"RemovedKld": 0.065126,
|
| 1290 |
+
"RemovedPplDeltaPercent": 4.235466854228933,
|
| 1291 |
+
"AnchorSizeBytes": 51612506528,
|
| 1292 |
+
"AnchorSizeGB": 51.612506528,
|
| 1293 |
+
"AnchorSizeGiB": 48.06789246201515,
|
| 1294 |
+
"AnchorKld": 0.024661,
|
| 1295 |
+
"AnchorPplDeltaPercent": 0.020520485317385193,
|
| 1296 |
+
"SizeDeltaPercent": 2.005156915676157,
|
| 1297 |
+
"KldRatio": 2.6408499249827666,
|
| 1298 |
+
"PplAbsRatio": 206.40188517571735
|
| 1299 |
+
},
|
| 1300 |
+
{
|
| 1301 |
+
"Scope": "group",
|
| 1302 |
+
"GroupName": "ffn_down",
|
| 1303 |
+
"RemovedCandidate": "IQ2_XS",
|
| 1304 |
+
"AcceptedAnchor": "UD-IQ3_XXS",
|
| 1305 |
+
"Reason": "Reason: small size gain (2.16%) but disproportionate damage (KLD x2.73, |PPL| x212.00).",
|
| 1306 |
+
"RemovedSizeBytes": 50495592864,
|
| 1307 |
+
"RemovedSizeGB": 50.495592863999995,
|
| 1308 |
+
"RemovedSizeGiB": 47.027685552835464,
|
| 1309 |
+
"RemovedKld": 0.067215,
|
| 1310 |
+
"RemovedPplDeltaPercent": 4.350360471250213,
|
| 1311 |
+
"AnchorSizeBytes": 51612506528,
|
| 1312 |
+
"AnchorSizeGB": 51.612506528,
|
| 1313 |
+
"AnchorSizeGiB": 48.06789246201515,
|
| 1314 |
+
"AnchorKld": 0.024661,
|
| 1315 |
+
"AnchorPplDeltaPercent": 0.020520485317385193,
|
| 1316 |
+
"SizeDeltaPercent": 2.1640368568305623,
|
| 1317 |
+
"KldRatio": 2.7255585742670614,
|
| 1318 |
+
"PplAbsRatio": 212.00085689808407
|
| 1319 |
+
},
|
| 1320 |
+
{
|
| 1321 |
+
"Scope": "group",
|
| 1322 |
+
"GroupName": "ffn_down",
|
| 1323 |
+
"RemovedCandidate": "IQ2_XXS",
|
| 1324 |
+
"AcceptedAnchor": "UD-IQ3_XXS",
|
| 1325 |
+
"Reason": "Reason: small size gain (2.77%) but disproportionate damage (KLD x3.36, |PPL| x192.46).",
|
| 1326 |
+
"RemovedSizeBytes": 50183969184,
|
| 1327 |
+
"RemovedSizeGB": 50.183969184,
|
| 1328 |
+
"RemovedSizeGiB": 46.737463384866714,
|
| 1329 |
+
"RemovedKld": 0.082924,
|
| 1330 |
+
"RemovedPplDeltaPercent": 3.9493933532618244,
|
| 1331 |
+
"AnchorSizeBytes": 51612506528,
|
| 1332 |
+
"AnchorSizeGB": 51.612506528,
|
| 1333 |
+
"AnchorSizeGiB": 48.06789246201515,
|
| 1334 |
+
"AnchorKld": 0.024661,
|
| 1335 |
+
"AnchorPplDeltaPercent": 0.020520485317385193,
|
| 1336 |
+
"SizeDeltaPercent": 2.7678123774612895,
|
| 1337 |
+
"KldRatio": 3.3625562629252665,
|
| 1338 |
+
"PplAbsRatio": 192.4610111397245
|
| 1339 |
+
}
|
| 1340 |
+
],
|
| 1341 |
+
"synergySecondChances": [
|
| 1342 |
+
{
|
| 1343 |
+
"SynergyName": "ffn_up_gate\u002Bffn_down",
|
| 1344 |
+
"GroupName": "ffn_up_gate",
|
| 1345 |
+
"PeerGroupName": "ffn_down",
|
| 1346 |
+
"RestoredCandidate": "Q6_K",
|
| 1347 |
+
"AcceptedAnchor": "UD-Q6_K_XL",
|
| 1348 |
+
"OriginalBadTradeReason": "Reason: small size gain (0.34%) but disproportionate damage (KLD x0.95, |PPL| x10.79).",
|
| 1349 |
+
"SecondChanceReason": "synergy \u0027ffn_up_gate\u002Bffn_down\u0027 second chance because \u0027Q6_K\u0027 survived in peer group \u0027ffn_down\u0027 and the original bad-trade decision does not survive KLD-only review vs anchor \u0027UD-Q6_K_XL\u0027",
|
| 1350 |
+
"RestoredSizeBytes": 43474311584,
|
| 1351 |
+
"RestoredKld": 0.004724,
|
| 1352 |
+
"RestoredPplDeltaPercent": -0.0929664146298583,
|
| 1353 |
+
"AnchorSizeBytes": 43624651168,
|
| 1354 |
+
"AnchorKld": 0.004993,
|
| 1355 |
+
"AnchorPplDeltaPercent": -0.00861614207842626
|
| 1356 |
+
},
|
| 1357 |
+
{
|
| 1358 |
+
"SynergyName": "ffn_up_gate\u002Bffn_down",
|
| 1359 |
+
"GroupName": "ffn_up_gate",
|
| 1360 |
+
"PeerGroupName": "ffn_down",
|
| 1361 |
+
"RestoredCandidate": "UD-Q5_K_M",
|
| 1362 |
+
"AcceptedAnchor": "UD-Q5_K_XL",
|
| 1363 |
+
"OriginalBadTradeReason": "Reason: small size gain (0.18%) but disproportionate damage (KLD x1.04, |PPL| x44.20).",
|
| 1364 |
+
"SecondChanceReason": "synergy \u0027ffn_up_gate\u002Bffn_down\u0027 second chance because \u0027UD-Q5_K_M\u0027 survived in peer group \u0027ffn_down\u0027 and the original bad-trade decision does not survive KLD-only review vs anchor \u0027UD-Q5_K_XL\u0027",
|
| 1365 |
+
"RestoredSizeBytes": 40642501024,
|
| 1366 |
+
"RestoredKld": 0.006135,
|
| 1367 |
+
"RestoredPplDeltaPercent": -0.1927554070687557,
|
| 1368 |
+
"AnchorSizeBytes": 40713804192,
|
| 1369 |
+
"AnchorKld": 0.005908,
|
| 1370 |
+
"AnchorPplDeltaPercent": 0.004360822929488763
|
| 1371 |
+
},
|
| 1372 |
+
{
|
| 1373 |
+
"SynergyName": "ffn_up_gate\u002Bffn_down",
|
| 1374 |
+
"GroupName": "ffn_up_gate",
|
| 1375 |
+
"PeerGroupName": "ffn_down",
|
| 1376 |
+
"RestoredCandidate": "UD-Q5_K_S",
|
| 1377 |
+
"AcceptedAnchor": "UD-Q5_K_XL",
|
| 1378 |
+
"OriginalBadTradeReason": "Reason: small size gain (0.18%) but disproportionate damage (KLD x1.04, |PPL| x44.20).",
|
| 1379 |
+
"SecondChanceReason": "synergy \u0027ffn_up_gate\u002Bffn_down\u0027 second chance because \u0027UD-Q5_K_S\u0027 survived in peer group \u0027ffn_down\u0027 and the original bad-trade decision does not survive KLD-only review vs anchor \u0027UD-Q5_K_XL\u0027",
|
| 1380 |
+
"RestoredSizeBytes": 40642501024,
|
| 1381 |
+
"RestoredKld": 0.006135,
|
| 1382 |
+
"RestoredPplDeltaPercent": -0.1927554070687557,
|
| 1383 |
+
"AnchorSizeBytes": 40713804192,
|
| 1384 |
+
"AnchorKld": 0.005908,
|
| 1385 |
+
"AnchorPplDeltaPercent": 0.004360822929488763
|
| 1386 |
+
},
|
| 1387 |
+
{
|
| 1388 |
+
"SynergyName": "ffn_up_gate\u002Bffn_down",
|
| 1389 |
+
"GroupName": "ffn_up_gate",
|
| 1390 |
+
"PeerGroupName": "ffn_down",
|
| 1391 |
+
"RestoredCandidate": "UD-Q6_K",
|
| 1392 |
+
"AcceptedAnchor": "UD-Q6_K_XL",
|
| 1393 |
+
"OriginalBadTradeReason": "Reason: small size gain (0.30%) but disproportionate damage (KLD x0.94, |PPL| x6.19).",
|
| 1394 |
+
"SecondChanceReason": "synergy \u0027ffn_up_gate\u002Bffn_down\u0027 second chance because \u0027UD-Q6_K\u0027 survived in peer group \u0027ffn_down\u0027 and the original bad-trade decision does not survive KLD-only review vs anchor \u0027UD-Q6_K_XL\u0027",
|
| 1395 |
+
"RestoredSizeBytes": 43494627744,
|
| 1396 |
+
"RestoredKld": 0.004701,
|
| 1397 |
+
"RestoredPplDeltaPercent": -0.05331457710568217,
|
| 1398 |
+
"AnchorSizeBytes": 43624651168,
|
| 1399 |
+
"AnchorKld": 0.004993,
|
| 1400 |
+
"AnchorPplDeltaPercent": -0.00861614207842626
|
| 1401 |
+
},
|
| 1402 |
+
{
|
| 1403 |
+
"SynergyName": "ffn_up_gate\u002Bffn_down",
|
| 1404 |
+
"GroupName": "ffn_down",
|
| 1405 |
+
"PeerGroupName": "ffn_up_gate",
|
| 1406 |
+
"RestoredCandidate": "IQ4_XS",
|
| 1407 |
+
"AcceptedAnchor": "Q5_K_S",
|
| 1408 |
+
"OriginalBadTradeReason": "Reason: small size gain (3.08%) but disproportionate damage (KLD x1.65, |PPL| x7.94).",
|
| 1409 |
+
"SecondChanceReason": "synergy \u0027ffn_up_gate\u002Bffn_down\u0027 second chance because \u0027IQ4_XS\u0027 survived in peer group \u0027ffn_up_gate\u0027 and the original bad-trade decision does not survive KLD-only review vs anchor \u0027Q5_K_S\u0027",
|
| 1410 |
+
"RestoredSizeBytes": 53074680224,
|
| 1411 |
+
"RestoredKld": 0.010597,
|
| 1412 |
+
"RestoredPplDeltaPercent": 0.2369439071566675,
|
| 1413 |
+
"AnchorSizeBytes": 54758955424,
|
| 1414 |
+
"AnchorKld": 0.006424,
|
| 1415 |
+
"AnchorPplDeltaPercent": -0.029839985932830305
|
| 1416 |
+
},
|
| 1417 |
+
{
|
| 1418 |
+
"SynergyName": "ffn_up_gate\u002Bffn_down",
|
| 1419 |
+
"GroupName": "ffn_down",
|
| 1420 |
+
"PeerGroupName": "ffn_up_gate",
|
| 1421 |
+
"RestoredCandidate": "IQ3_XXS",
|
| 1422 |
+
"AcceptedAnchor": "UD-IQ3_XXS",
|
| 1423 |
+
"OriginalBadTradeReason": "Reason: small size gain (0.27%) but disproportionate damage (KLD x1.24, |PPL| x31.79).",
|
| 1424 |
+
"SecondChanceReason": "synergy \u0027ffn_up_gate\u002Bffn_down\u0027 second chance because \u0027IQ3_XXS\u0027 survived in peer group \u0027ffn_up_gate\u0027 and the original bad-trade decision does not survive KLD-only review vs anchor \u0027UD-IQ3_XXS\u0027",
|
| 1425 |
+
"RestoredSizeBytes": 51474618784,
|
| 1426 |
+
"RestoredKld": 0.030482,
|
| 1427 |
+
"RestoredPplDeltaPercent": 0.6523298751538492,
|
| 1428 |
+
"AnchorSizeBytes": 51612506528,
|
| 1429 |
+
"AnchorKld": 0.024661,
|
| 1430 |
+
"AnchorPplDeltaPercent": 0.020520485317385193
|
| 1431 |
+
},
|
| 1432 |
+
{
|
| 1433 |
+
"SynergyName": "ffn_up_gate\u002Bffn_down",
|
| 1434 |
+
"GroupName": "ffn_down",
|
| 1435 |
+
"PeerGroupName": "ffn_up_gate",
|
| 1436 |
+
"RestoredCandidate": "IQ2_M",
|
| 1437 |
+
"AcceptedAnchor": "UD-IQ3_XXS",
|
| 1438 |
+
"OriginalBadTradeReason": "Reason: small size gain (1.40%) but disproportionate damage (KLD x2.02, |PPL| x130.13).",
|
| 1439 |
+
"SecondChanceReason": "synergy \u0027ffn_up_gate\u002Bffn_down\u0027 second chance because \u0027IQ2_M\u0027 survived in peer group \u0027ffn_up_gate\u0027 and the original bad-trade decision does not survive KLD-only review vs anchor \u0027UD-IQ3_XXS\u0027",
|
| 1440 |
+
"RestoredSizeBytes": 50889218464,
|
| 1441 |
+
"RestoredKld": 0.049787,
|
| 1442 |
+
"RestoredPplDeltaPercent": 2.6704061895551265,
|
| 1443 |
+
"AnchorSizeBytes": 51612506528,
|
| 1444 |
+
"AnchorKld": 0.024661,
|
| 1445 |
+
"AnchorPplDeltaPercent": 0.020520485317385193
|
| 1446 |
+
},
|
| 1447 |
+
{
|
| 1448 |
+
"SynergyName": "ffn_up_gate\u002Bffn_down",
|
| 1449 |
+
"GroupName": "ffn_down",
|
| 1450 |
+
"PeerGroupName": "ffn_up_gate",
|
| 1451 |
+
"RestoredCandidate": "UD-IQ4_XS",
|
| 1452 |
+
"AcceptedAnchor": "Q5_K_S",
|
| 1453 |
+
"OriginalBadTradeReason": "Reason: small size gain (2.61%) but disproportionate damage (KLD x1.35, |PPL| x5.22).",
|
| 1454 |
+
"SecondChanceReason": "synergy \u0027ffn_up_gate\u002Bffn_down\u0027 second chance because \u0027UD-IQ4_XS\u0027 survived in peer group \u0027ffn_up_gate\u0027 and the original bad-trade decision does not survive KLD-only review vs anchor \u0027Q5_K_S\u0027",
|
| 1455 |
+
"RestoredSizeBytes": 53329746336,
|
| 1456 |
+
"RestoredKld": 0.008649,
|
| 1457 |
+
"RestoredPplDeltaPercent": 0.15586425180235594,
|
| 1458 |
+
"AnchorSizeBytes": 54758955424,
|
| 1459 |
+
"AnchorKld": 0.006424,
|
| 1460 |
+
"AnchorPplDeltaPercent": -0.029839985932830305
|
| 1461 |
+
},
|
| 1462 |
+
{
|
| 1463 |
+
"SynergyName": "ffn_up_gate\u002Bffn_down",
|
| 1464 |
+
"GroupName": "ffn_down",
|
| 1465 |
+
"PeerGroupName": "ffn_up_gate",
|
| 1466 |
+
"RestoredCandidate": "UD-Q3_K_M",
|
| 1467 |
+
"AcceptedAnchor": "Q5_K_S",
|
| 1468 |
+
"OriginalBadTradeReason": "Reason: small size gain (2.61%) but disproportionate damage (KLD x1.35, |PPL| x5.22).",
|
| 1469 |
+
"SecondChanceReason": "synergy \u0027ffn_up_gate\u002Bffn_down\u0027 second chance because \u0027UD-Q3_K_M\u0027 survived in peer group \u0027ffn_up_gate\u0027 and the original bad-trade decision does not survive KLD-only review vs anchor \u0027Q5_K_S\u0027",
|
| 1470 |
+
"RestoredSizeBytes": 53329746336,
|
| 1471 |
+
"RestoredKld": 0.008649,
|
| 1472 |
+
"RestoredPplDeltaPercent": 0.15586425180235594,
|
| 1473 |
+
"AnchorSizeBytes": 54758955424,
|
| 1474 |
+
"AnchorKld": 0.006424,
|
| 1475 |
+
"AnchorPplDeltaPercent": -0.029839985932830305
|
| 1476 |
+
},
|
| 1477 |
+
{
|
| 1478 |
+
"SynergyName": "ffn_up_gate\u002Bffn_down",
|
| 1479 |
+
"GroupName": "ffn_down",
|
| 1480 |
+
"PeerGroupName": "ffn_up_gate",
|
| 1481 |
+
"RestoredCandidate": "UD-Q3_K_XL",
|
| 1482 |
+
"AcceptedAnchor": "Q5_K_S",
|
| 1483 |
+
"OriginalBadTradeReason": "Reason: small size gain (2.53%) but disproportionate damage (KLD x1.33, |PPL| x8.08).",
|
| 1484 |
+
"SecondChanceReason": "synergy \u0027ffn_up_gate\u002Bffn_down\u0027 second chance because \u0027UD-Q3_K_XL\u0027 survived in peer group \u0027ffn_up_gate\u0027 and the original bad-trade decision does not survive KLD-only review vs anchor \u0027Q5_K_S\u0027",
|
| 1485 |
+
"RestoredSizeBytes": 53371689376,
|
| 1486 |
+
"RestoredKld": 0.008546,
|
| 1487 |
+
"RestoredPplDeltaPercent": 0.24116405837874938,
|
| 1488 |
+
"AnchorSizeBytes": 54758955424,
|
| 1489 |
+
"AnchorKld": 0.006424,
|
| 1490 |
+
"AnchorPplDeltaPercent": -0.029839985932830305
|
| 1491 |
+
},
|
| 1492 |
+
{
|
| 1493 |
+
"SynergyName": "ffn_up_gate\u002Bffn_down",
|
| 1494 |
+
"GroupName": "ffn_down",
|
| 1495 |
+
"PeerGroupName": "ffn_up_gate",
|
| 1496 |
+
"RestoredCandidate": "UD-Q4_K_S",
|
| 1497 |
+
"AcceptedAnchor": "Q5_K_S",
|
| 1498 |
+
"OriginalBadTradeReason": "Reason: small size gain (2.04%) but disproportionate damage (KLD x1.30, |PPL| x8.25).",
|
| 1499 |
+
"SecondChanceReason": "synergy \u0027ffn_up_gate\u002Bffn_down\u0027 second chance because \u0027UD-Q4_K_S\u0027 survived in peer group \u0027ffn_up_gate\u0027 and the original bad-trade decision does not survive KLD-only review vs anchor \u0027Q5_K_S\u0027",
|
| 1500 |
+
"RestoredSizeBytes": 53640124832,
|
| 1501 |
+
"RestoredKld": 0.008324,
|
| 1502 |
+
"RestoredPplDeltaPercent": 0.24603481624758225,
|
| 1503 |
+
"AnchorSizeBytes": 54758955424,
|
| 1504 |
+
"AnchorKld": 0.006424,
|
| 1505 |
+
"AnchorPplDeltaPercent": -0.029839985932830305
|
| 1506 |
+
}
|
| 1507 |
+
],
|
| 1508 |
+
"notes": [
|
| 1509 |
+
"Bad trade elimination: \u0027IQ3_M\u0027 removed vs accepted anchor \u0027IQ4_XS\u0027 for \u0027embeddings\u0027. Reason: small size gain (0.08%) but disproportionate damage (KLD x1.99, |PPL| x5.43).",
|
| 1510 |
+
"Bad trade elimination: \u0027IQ3_S\u0027 removed vs accepted anchor \u0027IQ4_XS\u0027 for \u0027embeddings\u0027. Reason: small size gain (0.08%) but disproportionate damage (KLD x1.99, |PPL| x5.43).",
|
| 1511 |
+
"Bad trade elimination: \u0027IQ3_XS\u0027 removed vs accepted anchor \u0027IQ4_XS\u0027 for \u0027embeddings\u0027. Reason: small size gain (0.08%) but disproportionate damage (KLD x1.99, |PPL| x5.43).",
|
| 1512 |
+
"Bad trade elimination: \u0027IQ3_XXS\u0027 removed vs accepted anchor \u0027IQ4_XS\u0027 for \u0027embeddings\u0027. Reason: small size gain (0.08%) but disproportionate damage (KLD x1.99, |PPL| x5.43).",
|
| 1513 |
+
"Bad trade elimination: \u0027IQ2_M\u0027 removed vs accepted anchor \u0027IQ4_XS\u0027 for \u0027embeddings\u0027. Reason: small size gain (0.08%) but disproportionate damage (KLD x1.99, |PPL| x5.43).",
|
| 1514 |
+
"Bad trade elimination: \u0027IQ2_S\u0027 removed vs accepted anchor \u0027IQ4_XS\u0027 for \u0027embeddings\u0027. Reason: small size gain (0.08%) but disproportionate damage (KLD x1.99, |PPL| x5.43).",
|
| 1515 |
+
"Bad trade elimination: \u0027IQ2_XS\u0027 removed vs accepted anchor \u0027IQ4_XS\u0027 for \u0027embeddings\u0027. Reason: small size gain (0.15%) but disproportionate damage (KLD x2.43, |PPL| x6.19).",
|
| 1516 |
+
"Bad trade elimination: \u0027IQ2_XXS\u0027 removed vs accepted anchor \u0027IQ4_XS\u0027 for \u0027embeddings\u0027. Reason: small size gain (0.15%) but disproportionate damage (KLD x2.43, |PPL| x6.19).",
|
| 1517 |
+
"Bad trade elimination: \u0027IQ3_XXS\u0027 removed vs accepted anchor \u0027Q6_K\u0027 for \u0027lm_head\u0027. Reason: small size gain (0.10%) but disproportionate damage (KLD x1.27, |PPL| x75.76).",
|
| 1518 |
+
"Bad trade elimination: \u0027IQ2_M\u0027 removed vs accepted anchor \u0027Q6_K\u0027 for \u0027lm_head\u0027. Reason: small size gain (0.10%) but disproportionate damage (KLD x1.27, |PPL| x75.76).",
|
| 1519 |
+
"Bad trade elimination: \u0027IQ2_S\u0027 removed vs accepted anchor \u0027Q6_K\u0027 for \u0027lm_head\u0027. Reason: small size gain (0.10%) but disproportionate damage (KLD x1.27, |PPL| x75.76).",
|
| 1520 |
+
"Bad trade elimination: \u0027IQ2_XS\u0027 removed vs accepted anchor \u0027Q6_K\u0027 for \u0027lm_head\u0027. Reason: small size gain (0.10%) but disproportionate damage (KLD x1.27, |PPL| x75.76).",
|
| 1521 |
+
"Bad trade elimination: \u0027IQ2_XXS\u0027 removed vs accepted anchor \u0027Q6_K\u0027 for \u0027lm_head\u0027. Reason: small size gain (0.10%) but disproportionate damage (KLD x1.27, |PPL| x75.76).",
|
| 1522 |
+
"Bad trade elimination: \u0027UD-IQ2_M\u0027 removed vs accepted anchor \u0027Q6_K\u0027 for \u0027lm_head\u0027. Reason: small size gain (0.19%) but disproportionate damage (KLD x2.37, |PPL| x1031.73).",
|
| 1523 |
+
"Bad trade elimination: \u0027UD-Q2_K_XL\u0027 removed vs accepted anchor \u0027Q6_K\u0027 for \u0027lm_head\u0027. Reason: small size gain (0.19%) but disproportionate damage (KLD x2.37, |PPL| x1031.73).",
|
| 1524 |
+
"Bad trade elimination: \u0027UD-IQ2_XXS\u0027 removed vs accepted anchor \u0027Q6_K\u0027 for \u0027lm_head\u0027. Reason: small size gain (0.19%) but disproportionate damage (KLD x2.37, |PPL| x1031.73).",
|
| 1525 |
+
"Bad trade elimination: \u0027Q5_K_S\u0027 removed vs accepted anchor \u0027UD-Q2_K_XL\u0027 for \u0027attn_q\u0027. Reason: small size gain (0.00%) but disproportionate damage (KLD x1.00, |PPL| x4.09).",
|
| 1526 |
+
"Bad trade elimination: \u0027UD-IQ2_M\u0027 removed vs accepted anchor \u0027UD-Q2_K_XL\u0027 for \u0027attn_q\u0027. Reason: small size gain (0.00%) but disproportionate damage (KLD x1.00, |PPL| x4.09).",
|
| 1527 |
+
"Bad trade elimination: \u0027UD-IQ2_XXS\u0027 removed vs accepted anchor \u0027UD-Q2_K_XL\u0027 for \u0027attn_q\u0027. Reason: small size gain (0.00%) but disproportionate damage (KLD x1.00, |PPL| x4.09).",
|
| 1528 |
+
"Bad trade elimination: \u0027IQ3_M\u0027 removed vs accepted anchor \u0027Q4_K_S\u0027 for \u0027attn_q\u0027. Reason: small size gain (0.04%) but disproportionate damage (KLD x1.39, |PPL| x4.21).",
|
| 1529 |
+
"Bad trade elimination: \u0027IQ3_S\u0027 removed vs accepted anchor \u0027Q4_K_S\u0027 for \u0027attn_q\u0027. Reason: small size gain (0.04%) but disproportionate damage (KLD x1.39, |PPL| x4.21).",
|
| 1530 |
+
"Bad trade elimination: \u0027IQ3_XS\u0027 removed vs accepted anchor \u0027Q4_K_S\u0027 for \u0027attn_q\u0027. Reason: small size gain (0.05%) but disproportionate damage (KLD x1.60, |PPL| x5.56).",
|
| 1531 |
+
"Bad trade elimination: \u0027IQ3_XXS\u0027 removed vs accepted anchor \u0027Q4_K_S\u0027 for \u0027attn_q\u0027. Reason: small size gain (0.07%) but disproportionate damage (KLD x2.53, |PPL| x10.80).",
|
| 1532 |
+
"Bad trade elimination: \u0027IQ2_M\u0027 removed vs accepted anchor \u0027Q4_K_S\u0027 for \u0027attn_q\u0027. Reason: small size gain (0.07%) but disproportionate damage (KLD x2.53, |PPL| x10.80).",
|
| 1533 |
+
"Bad trade elimination: \u0027IQ2_S\u0027 removed vs accepted anchor \u0027Q4_K_S\u0027 for \u0027attn_q\u0027. Reason: small size gain (0.08%) but disproportionate damage (KLD x2.88, |PPL| x10.88).",
|
| 1534 |
+
"Bad trade elimination: \u0027IQ2_XS\u0027 removed vs accepted anchor \u0027Q4_K_S\u0027 for \u0027attn_q\u0027. Reason: small size gain (0.08%) but disproportionate damage (KLD x2.88, |PPL| x10.88).",
|
| 1535 |
+
"Bad trade elimination: \u0027IQ2_XXS\u0027 removed vs accepted anchor \u0027Q4_K_S\u0027 for \u0027attn_q\u0027. Reason: small size gain (0.08%) but disproportionate damage (KLD x3.49, |PPL| x19.55).",
|
| 1536 |
+
"Bad trade elimination: \u0027Q6_K\u0027 removed vs accepted anchor \u0027Q8_0\u0027 for \u0027attn_kv\u0027. Reason: small size gain (0.01%) but disproportionate damage (KLD x0.98, |PPL| x5.55).",
|
| 1537 |
+
"Bad trade elimination: \u0027UD-IQ3_S\u0027 removed vs accepted anchor \u0027Q8_0\u0027 for \u0027attn_kv\u0027. Reason: small size gain (0.01%) but disproportionate damage (KLD x0.98, |PPL| x5.55).",
|
| 1538 |
+
"Bad trade elimination: \u0027UD-IQ3_XXS\u0027 removed vs accepted anchor \u0027Q8_0\u0027 for \u0027attn_kv\u0027. Reason: small size gain (0.01%) but disproportionate damage (KLD x0.98, |PPL| x5.55).",
|
| 1539 |
+
"Bad trade elimination: \u0027UD-Q2_K_XL\u0027 removed vs accepted anchor \u0027Q8_0\u0027 for \u0027attn_kv\u0027. Reason: small size gain (0.01%) but disproportionate damage (KLD x0.98, |PPL| x5.55).",
|
| 1540 |
+
"Bad trade elimination: \u0027Q5_K\u0027 removed vs accepted anchor \u0027Q8_0\u0027 for \u0027attn_kv\u0027. Reason: small size gain (0.01%) but disproportionate damage (KLD x1.07, |PPL| x5.86).",
|
| 1541 |
+
"Bad trade elimination: \u0027Q5_K_S\u0027 removed vs accepted anchor \u0027Q8_0\u0027 for \u0027attn_kv\u0027. Reason: small size gain (0.01%) but disproportionate damage (KLD x1.12, |PPL| x4.01).",
|
| 1542 |
+
"Bad trade elimination: \u0027UD-IQ2_M\u0027 removed vs accepted anchor \u0027Q8_0\u0027 for \u0027attn_kv\u0027. Reason: small size gain (0.01%) but disproportionate damage (KLD x1.12, |PPL| x4.01).",
|
| 1543 |
+
"Bad trade elimination: \u0027UD-IQ2_XXS\u0027 removed vs accepted anchor \u0027Q8_0\u0027 for \u0027attn_kv\u0027. Reason: small size gain (0.01%) but disproportionate damage (KLD x1.12, |PPL| x4.01).",
|
| 1544 |
+
"Bad trade elimination: \u0027IQ3_XS\u0027 removed vs accepted anchor \u0027IQ3_M\u0027 for \u0027attn_kv\u0027. Reason: small size gain (0.00%) but disproportionate damage (KLD x1.16, |PPL| x120.18).",
|
| 1545 |
+
"Bad trade elimination: \u0027IQ3_XXS\u0027 removed vs accepted anchor \u0027IQ3_M\u0027 for \u0027attn_kv\u0027. Reason: small size gain (0.00%) but disproportionate damage (KLD x1.59, |PPL| x135.44).",
|
| 1546 |
+
"Bad trade elimination: \u0027IQ2_M\u0027 removed vs accepted anchor \u0027IQ3_M\u0027 for \u0027attn_kv\u0027. Reason: small size gain (0.00%) but disproportionate damage (KLD x1.59, |PPL| x135.44).",
|
| 1547 |
+
"Bad trade elimination: \u0027IQ2_S\u0027 removed vs accepted anchor \u0027IQ3_M\u0027 for \u0027attn_kv\u0027. Reason: small size gain (0.00%) but disproportionate damage (KLD x1.78, |PPL| x159.16).",
|
| 1548 |
+
"Bad trade elimination: \u0027IQ2_XS\u0027 removed vs accepted anchor \u0027IQ3_M\u0027 for \u0027attn_kv\u0027. Reason: small size gain (0.00%) but disproportionate damage (KLD x1.79, |PPL| x155.07).",
|
| 1549 |
+
"Bad trade elimination: \u0027IQ2_XXS\u0027 removed vs accepted anchor \u0027IQ3_M\u0027 for \u0027attn_kv\u0027. Reason: small size gain (0.00%) but disproportionate damage (KLD x2.24, |PPL| x242.98).",
|
| 1550 |
+
"Bad trade elimination: \u0027Q6_K\u0027 removed vs accepted anchor \u0027Q8_0\u0027 for \u0027attn_output\u0027. Reason: small size gain (0.03%) but disproportionate damage (KLD x1.07, |PPL| x3.81).",
|
| 1551 |
+
"Bad trade elimination: \u0027UD-IQ3_S\u0027 removed vs accepted anchor \u0027Q8_0\u0027 for \u0027attn_output\u0027. Reason: small size gain (0.03%) but disproportionate damage (KLD x1.07, |PPL| x3.81).",
|
| 1552 |
+
"Bad trade elimination: \u0027UD-IQ3_XXS\u0027 removed vs accepted anchor \u0027Q8_0\u0027 for \u0027attn_output\u0027. Reason: small size gain (0.03%) but disproportionate damage (KLD x1.07, |PPL| x3.81).",
|
| 1553 |
+
"Bad trade elimination: \u0027IQ3_S\u0027 removed vs accepted anchor \u0027IQ4_XS\u0027 for \u0027attn_output\u0027. Reason: small size gain (0.01%) but disproportionate damage (KLD x1.78, |PPL| x6.60).",
|
| 1554 |
+
"Bad trade elimination: \u0027IQ3_XS\u0027 removed vs accepted anchor \u0027IQ4_XS\u0027 for \u0027attn_output\u0027. Reason: small size gain (0.01%) but disproportionate damage (KLD x1.78, |PPL| x6.60).",
|
| 1555 |
+
"Bad trade elimination: \u0027IQ3_XXS\u0027 removed vs accepted anchor \u0027IQ4_XS\u0027 for \u0027attn_output\u0027. Reason: small size gain (0.01%) but disproportionate damage (KLD x1.78, |PPL| x6.60).",
|
| 1556 |
+
"Bad trade elimination: \u0027IQ2_M\u0027 removed vs accepted anchor \u0027IQ4_XS\u0027 for \u0027attn_output\u0027. Reason: small size gain (0.01%) but disproportionate damage (KLD x1.78, |PPL| x6.60).",
|
| 1557 |
+
"Bad trade elimination: \u0027IQ2_S\u0027 removed vs accepted anchor \u0027IQ4_XS\u0027 for \u0027attn_output\u0027. Reason: small size gain (0.01%) but disproportionate damage (KLD x1.78, |PPL| x6.60).",
|
| 1558 |
+
"Bad trade elimination: \u0027IQ2_XS\u0027 removed vs accepted anchor \u0027IQ4_XS\u0027 for \u0027attn_output\u0027. Reason: small size gain (0.03%) but disproportionate damage (KLD x5.25, |PPL| x13.90).",
|
| 1559 |
+
"Bad trade elimination: \u0027IQ2_XXS\u0027 removed vs accepted anchor \u0027IQ4_XS\u0027 for \u0027attn_output\u0027. Reason: small size gain (0.03%) but disproportionate damage (KLD x6.44, |PPL| x17.41).",
|
| 1560 |
+
"Bad trade elimination: \u0027UD-Q6_K\u0027 removed vs accepted anchor \u0027UD-Q6_K_XL\u0027 for \u0027ffn_up_gate\u0027. Reason: small size gain (0.30%) but disproportionate damage (KLD x0.94, |PPL| x6.19).",
|
| 1561 |
+
"Bad trade elimination: \u0027Q6_K\u0027 removed vs accepted anchor \u0027UD-Q6_K_XL\u0027 for \u0027ffn_up_gate\u0027. Reason: small size gain (0.34%) but disproportionate damage (KLD x0.95, |PPL| x10.79).",
|
| 1562 |
+
"Bad trade elimination: \u0027UD-Q5_K_M\u0027 removed vs accepted anchor \u0027UD-Q5_K_XL\u0027 for \u0027ffn_up_gate\u0027. Reason: small size gain (0.18%) but disproportionate damage (KLD x1.04, |PPL| x44.20).",
|
| 1563 |
+
"Bad trade elimination: \u0027UD-Q5_K_S\u0027 removed vs accepted anchor \u0027UD-Q5_K_XL\u0027 for \u0027ffn_up_gate\u0027. Reason: small size gain (0.18%) but disproportionate damage (KLD x1.04, |PPL| x44.20).",
|
| 1564 |
+
"Bad trade elimination: \u0027UD-Q4_K_S\u0027 removed vs accepted anchor \u0027Q5_K_S\u0027 for \u0027ffn_down\u0027. Reason: small size gain (2.04%) but disproportionate damage (KLD x1.30, |PPL| x8.25).",
|
| 1565 |
+
"Bad trade elimination: \u0027UD-Q3_K_XL\u0027 removed vs accepted anchor \u0027Q5_K_S\u0027 for \u0027ffn_down\u0027. Reason: small size gain (2.53%) but disproportionate damage (KLD x1.33, |PPL| x8.08).",
|
| 1566 |
+
"Bad trade elimination: \u0027UD-IQ4_XS\u0027 removed vs accepted anchor \u0027Q5_K_S\u0027 for \u0027ffn_down\u0027. Reason: small size gain (2.61%) but disproportionate damage (KLD x1.35, |PPL| x5.22).",
|
| 1567 |
+
"Bad trade elimination: \u0027UD-Q3_K_M\u0027 removed vs accepted anchor \u0027Q5_K_S\u0027 for \u0027ffn_down\u0027. Reason: small size gain (2.61%) but disproportionate damage (KLD x1.35, |PPL| x5.22).",
|
| 1568 |
+
"Bad trade elimination: \u0027IQ4_XS\u0027 removed vs accepted anchor \u0027Q5_K_S\u0027 for \u0027ffn_down\u0027. Reason: small size gain (3.08%) but disproportionate damage (KLD x1.65, |PPL| x7.94).",
|
| 1569 |
+
"Bad trade elimination: \u0027IQ3_XXS\u0027 removed vs accepted anchor \u0027UD-IQ3_XXS\u0027 for \u0027ffn_down\u0027. Reason: small size gain (0.27%) but disproportionate damage (KLD x1.24, |PPL| x31.79).",
|
| 1570 |
+
"Bad trade elimination: \u0027UD-IQ2_XXS\u0027 removed vs accepted anchor \u0027UD-IQ3_XXS\u0027 for \u0027ffn_down\u0027. Reason: small size gain (1.36%) but disproportionate damage (KLD x1.60, |PPL| x80.01).",
|
| 1571 |
+
"Bad trade elimination: \u0027IQ2_M\u0027 removed vs accepted anchor \u0027UD-IQ3_XXS\u0027 for \u0027ffn_down\u0027. Reason: small size gain (1.40%) but disproportionate damage (KLD x2.02, |PPL| x130.13).",
|
| 1572 |
+
"Bad trade elimination: \u0027IQ2_S\u0027 removed vs accepted anchor \u0027UD-IQ3_XXS\u0027 for \u0027ffn_down\u0027. Reason: small size gain (2.01%) but disproportionate damage (KLD x2.64, |PPL| x206.40).",
|
| 1573 |
+
"Bad trade elimination: \u0027IQ2_XS\u0027 removed vs accepted anchor \u0027UD-IQ3_XXS\u0027 for \u0027ffn_down\u0027. Reason: small size gain (2.16%) but disproportionate damage (KLD x2.73, |PPL| x212.00).",
|
| 1574 |
+
"Bad trade elimination: \u0027IQ2_XXS\u0027 removed vs accepted anchor \u0027UD-IQ3_XXS\u0027 for \u0027ffn_down\u0027. Reason: small size gain (2.77%) but disproportionate damage (KLD x3.36, |PPL| x192.46).",
|
| 1575 |
+
"Synergy second-chance restored: \u0027Q6_K\u0027 restored for \u0027ffn_up_gate\u0027 because it survived in peer group \u0027ffn_down\u0027 under synergy \u0027ffn_up_gate\u002Bffn_down\u0027, and KLD-only bad-trade review did not eliminate it vs anchor \u0027UD-Q6_K_XL\u0027.",
|
| 1576 |
+
"Synergy second-chance restored: \u0027UD-Q5_K_M\u0027 restored for \u0027ffn_up_gate\u0027 because it survived in peer group \u0027ffn_down\u0027 under synergy \u0027ffn_up_gate\u002Bffn_down\u0027, and KLD-only bad-trade review did not eliminate it vs anchor \u0027UD-Q5_K_XL\u0027.",
|
| 1577 |
+
"Synergy second-chance restored: \u0027UD-Q5_K_S\u0027 restored for \u0027ffn_up_gate\u0027 because it survived in peer group \u0027ffn_down\u0027 under synergy \u0027ffn_up_gate\u002Bffn_down\u0027, and KLD-only bad-trade review did not eliminate it vs anchor \u0027UD-Q5_K_XL\u0027.",
|
| 1578 |
+
"Synergy second-chance restored: \u0027UD-Q6_K\u0027 restored for \u0027ffn_up_gate\u0027 because it survived in peer group \u0027ffn_down\u0027 under synergy \u0027ffn_up_gate\u002Bffn_down\u0027, and KLD-only bad-trade review did not eliminate it vs anchor \u0027UD-Q6_K_XL\u0027.",
|
| 1579 |
+
"Synergy second-chance restored: \u0027IQ4_XS\u0027 restored for \u0027ffn_down\u0027 because it survived in peer group \u0027ffn_up_gate\u0027 under synergy \u0027ffn_up_gate\u002Bffn_down\u0027, and KLD-only bad-trade review did not eliminate it vs anchor \u0027Q5_K_S\u0027.",
|
| 1580 |
+
"Synergy second-chance restored: \u0027IQ3_XXS\u0027 restored for \u0027ffn_down\u0027 because it survived in peer group \u0027ffn_up_gate\u0027 under synergy \u0027ffn_up_gate\u002Bffn_down\u0027, and KLD-only bad-trade review did not eliminate it vs anchor \u0027UD-IQ3_XXS\u0027.",
|
| 1581 |
+
"Synergy second-chance restored: \u0027IQ2_M\u0027 restored for \u0027ffn_down\u0027 because it survived in peer group \u0027ffn_up_gate\u0027 under synergy \u0027ffn_up_gate\u002Bffn_down\u0027, and KLD-only bad-trade review did not eliminate it vs anchor \u0027UD-IQ3_XXS\u0027.",
|
| 1582 |
+
"Synergy second-chance restored: \u0027UD-IQ4_XS\u0027 restored for \u0027ffn_down\u0027 because it survived in peer group \u0027ffn_up_gate\u0027 under synergy \u0027ffn_up_gate\u002Bffn_down\u0027, and KLD-only bad-trade review did not eliminate it vs anchor \u0027Q5_K_S\u0027.",
|
| 1583 |
+
"Synergy second-chance restored: \u0027UD-Q3_K_M\u0027 restored for \u0027ffn_down\u0027 because it survived in peer group \u0027ffn_up_gate\u0027 under synergy \u0027ffn_up_gate\u002Bffn_down\u0027, and KLD-only bad-trade review did not eliminate it vs anchor \u0027Q5_K_S\u0027.",
|
| 1584 |
+
"Synergy second-chance restored: \u0027UD-Q3_K_XL\u0027 restored for \u0027ffn_down\u0027 because it survived in peer group \u0027ffn_up_gate\u0027 under synergy \u0027ffn_up_gate\u002Bffn_down\u0027, and KLD-only bad-trade review did not eliminate it vs anchor \u0027Q5_K_S\u0027.",
|
| 1585 |
+
"Synergy second-chance restored: \u0027UD-Q4_K_S\u0027 restored for \u0027ffn_down\u0027 because it survived in peer group \u0027ffn_up_gate\u0027 under synergy \u0027ffn_up_gate\u002Bffn_down\u0027, and KLD-only bad-trade review did not eliminate it vs anchor \u0027Q5_K_S\u0027."
|
| 1586 |
+
]
|
| 1587 |
+
}
|
|
@@ -0,0 +1,162 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"FileName": "Qwen3.6-35B-A3B-LM-Q8_0.gguf",
|
| 4 |
+
"DisplayName": "LM-Q8_0",
|
| 5 |
+
"Provider": "llama.cpp",
|
| 6 |
+
"QuantFamily": "Q8_0",
|
| 7 |
+
"BaseQuant": "Q8_0",
|
| 8 |
+
"Kld": 0.004771,
|
| 9 |
+
"Ppl": 5.707712,
|
| 10 |
+
"PplDeltaPercent": 0,
|
| 11 |
+
"SizeBytes": 36908915520,
|
| 12 |
+
"SizeGB": 36.90891552,
|
| 13 |
+
"SizeGiB": 34.37410622835159,
|
| 14 |
+
"SourceKld": 0.004654,
|
| 15 |
+
"SourcePpl": 5.678789,
|
| 16 |
+
"SourceSizeBytes": 36903139744
|
| 17 |
+
},
|
| 18 |
+
{
|
| 19 |
+
"FileName": "Qwen3.6-35B-A3B-MQ-Q6_K_1.gguf",
|
| 20 |
+
"DisplayName": "MQ-Q6_K_1",
|
| 21 |
+
"Provider": "MagicQuant",
|
| 22 |
+
"QuantFamily": "Q6_K",
|
| 23 |
+
"BaseQuant": "Q6_K",
|
| 24 |
+
"Kld": 0.005383,
|
| 25 |
+
"Ppl": 5.691842,
|
| 26 |
+
"PplDeltaPercent": -0.27804486281016993,
|
| 27 |
+
"SizeBytes": 31590587200,
|
| 28 |
+
"SizeGB": 31.590587199999998,
|
| 29 |
+
"SizeGiB": 29.42102700471878,
|
| 30 |
+
"SourceKld": 0.005149,
|
| 31 |
+
"SourcePpl": 5.673763,
|
| 32 |
+
"SourceSizeBytes": 31590586784
|
| 33 |
+
},
|
| 34 |
+
{
|
| 35 |
+
"FileName": "Qwen3.6-35B-A3B-MQ-Q5_K_1.gguf",
|
| 36 |
+
"DisplayName": "MQ-Q5_K_1",
|
| 37 |
+
"Provider": "MagicQuant",
|
| 38 |
+
"QuantFamily": "Q5_K",
|
| 39 |
+
"BaseQuant": "Q6_K",
|
| 40 |
+
"Kld": 0.006012,
|
| 41 |
+
"Ppl": 5.69969,
|
| 42 |
+
"PplDeltaPercent": -0.14054668490630798,
|
| 43 |
+
"SizeBytes": 29185153856,
|
| 44 |
+
"SizeGB": 29.185153855999996,
|
| 45 |
+
"SizeGiB": 27.18079262971878,
|
| 46 |
+
"SourceKld": 0.005523,
|
| 47 |
+
"SourcePpl": 5.68002,
|
| 48 |
+
"SourceSizeBytes": 29185153440
|
| 49 |
+
},
|
| 50 |
+
{
|
| 51 |
+
"FileName": "Qwen3.6-35B-A3B-MQ-Q5_K_S_1.gguf",
|
| 52 |
+
"DisplayName": "MQ-Q5_K_S_1",
|
| 53 |
+
"Provider": "MagicQuant",
|
| 54 |
+
"QuantFamily": "Q5_K_S",
|
| 55 |
+
"BaseQuant": "Q5_K",
|
| 56 |
+
"Kld": 0.007155,
|
| 57 |
+
"Ppl": 5.703162,
|
| 58 |
+
"PplDeltaPercent": -0.07971670609869688,
|
| 59 |
+
"SizeBytes": 26333027136,
|
| 60 |
+
"SizeGB": 26.333027136000002,
|
| 61 |
+
"SizeGiB": 24.52454262971878,
|
| 62 |
+
"SourceKld": 0.00673,
|
| 63 |
+
"SourcePpl": 5.679092,
|
| 64 |
+
"SourceSizeBytes": 26333026720
|
| 65 |
+
},
|
| 66 |
+
{
|
| 67 |
+
"FileName": "Qwen3.6-35B-A3B-MQ-Q4_K_M_1.gguf",
|
| 68 |
+
"DisplayName": "MQ-Q4_K_M_1",
|
| 69 |
+
"Provider": "MagicQuant",
|
| 70 |
+
"QuantFamily": "Q4_K_M",
|
| 71 |
+
"BaseQuant": "Q5_K_S",
|
| 72 |
+
"Kld": 0.007832,
|
| 73 |
+
"Ppl": 5.712977,
|
| 74 |
+
"PplDeltaPercent": 0.09224361705707154,
|
| 75 |
+
"SizeBytes": 24818883392,
|
| 76 |
+
"SizeGB": 24.818883392,
|
| 77 |
+
"SizeGiB": 23.11438637971878,
|
| 78 |
+
"SourceKld": 0.007799,
|
| 79 |
+
"SourcePpl": 5.685451,
|
| 80 |
+
"SourceSizeBytes": 24818882976
|
| 81 |
+
},
|
| 82 |
+
{
|
| 83 |
+
"FileName": "Qwen3.6-35B-A3B-MQ-Q4_K_M_2.gguf",
|
| 84 |
+
"DisplayName": "MQ-Q4_K_M_2",
|
| 85 |
+
"Provider": "MagicQuant",
|
| 86 |
+
"QuantFamily": "Q4_K_M",
|
| 87 |
+
"BaseQuant": "Q4_K_M",
|
| 88 |
+
"Kld": 0.010894,
|
| 89 |
+
"Ppl": 5.709965,
|
| 90 |
+
"PplDeltaPercent": 0.039472909635253225,
|
| 91 |
+
"SizeBytes": 22324804416,
|
| 92 |
+
"SizeGB": 22.324804416000003,
|
| 93 |
+
"SizeGiB": 20.791594326496124,
|
| 94 |
+
"SourceKld": 0.011007,
|
| 95 |
+
"SourcePpl": 5.694152,
|
| 96 |
+
"SourceSizeBytes": 22324804000
|
| 97 |
+
},
|
| 98 |
+
{
|
| 99 |
+
"FileName": "Qwen3.6-35B-A3B-MQ-IQ4_NL_1.gguf",
|
| 100 |
+
"DisplayName": "MQ-IQ4_NL_1",
|
| 101 |
+
"Provider": "MagicQuant",
|
| 102 |
+
"QuantFamily": "IQ4_NL",
|
| 103 |
+
"BaseQuant": "Q8_0",
|
| 104 |
+
"Kld": 0.01304,
|
| 105 |
+
"Ppl": 5.718867,
|
| 106 |
+
"PplDeltaPercent": 0.19543733110571224,
|
| 107 |
+
"SizeBytes": 20887239488,
|
| 108 |
+
"SizeGB": 20.887239488000002,
|
| 109 |
+
"SizeGiB": 19.45275765657425,
|
| 110 |
+
"SourceKld": 0.013277,
|
| 111 |
+
"SourcePpl": 5.708942,
|
| 112 |
+
"SourceSizeBytes": 20887239072
|
| 113 |
+
},
|
| 114 |
+
{
|
| 115 |
+
"FileName": "Qwen3.6-35B-A3B-MQ-IQ3_M_1.gguf",
|
| 116 |
+
"DisplayName": "MQ-IQ3_M_1",
|
| 117 |
+
"Provider": "MagicQuant",
|
| 118 |
+
"QuantFamily": "IQ3_M",
|
| 119 |
+
"BaseQuant": "Q8_0",
|
| 120 |
+
"Kld": 0.026825,
|
| 121 |
+
"Ppl": 5.784219,
|
| 122 |
+
"PplDeltaPercent": 1.3404145128555949,
|
| 123 |
+
"SizeBytes": 17604148032,
|
| 124 |
+
"SizeGB": 17.604148032,
|
| 125 |
+
"SizeGiB": 16.39514046907425,
|
| 126 |
+
"SourceKld": 0.02633,
|
| 127 |
+
"SourcePpl": 5.764787,
|
| 128 |
+
"SourceSizeBytes": 17604147616
|
| 129 |
+
},
|
| 130 |
+
{
|
| 131 |
+
"FileName": "Qwen3.6-35B-A3B-UD-IQ3_S.gguf",
|
| 132 |
+
"DisplayName": "UD-IQ3_S",
|
| 133 |
+
"Provider": "Unsloth",
|
| 134 |
+
"QuantFamily": "UD-IQ3_S",
|
| 135 |
+
"BaseQuant": "IQ3_S",
|
| 136 |
+
"Kld": 0.068513,
|
| 137 |
+
"Ppl": 5.972007,
|
| 138 |
+
"PplDeltaPercent": 4.630489415023038,
|
| 139 |
+
"SizeBytes": 13676723008,
|
| 140 |
+
"SizeGB": 13.676723008,
|
| 141 |
+
"SizeGiB": 12.737440884113312,
|
| 142 |
+
"SourceKld": 0.068376,
|
| 143 |
+
"SourcePpl": 5.970404,
|
| 144 |
+
"SourceSizeBytes": 13676722592
|
| 145 |
+
},
|
| 146 |
+
{
|
| 147 |
+
"FileName": "Qwen3.6-35B-A3B-MQ-IQ2_XXS_1.gguf",
|
| 148 |
+
"DisplayName": "MQ-IQ2_XXS_1",
|
| 149 |
+
"Provider": "MagicQuant",
|
| 150 |
+
"QuantFamily": "IQ2_XXS",
|
| 151 |
+
"BaseQuant": "IQ2_XXS",
|
| 152 |
+
"Kld": 0.275805,
|
| 153 |
+
"Ppl": 7.01853,
|
| 154 |
+
"PplDeltaPercent": 22.965734781292404,
|
| 155 |
+
"SizeBytes": 9587160896,
|
| 156 |
+
"SizeGB": 9.587160895999999,
|
| 157 |
+
"SizeGiB": 8.928739368915558,
|
| 158 |
+
"SourceKld": 0.27513,
|
| 159 |
+
"SourcePpl": 7.049514,
|
| 160 |
+
"SourceSizeBytes": 9587160480
|
| 161 |
+
}
|
| 162 |
+
]
|
|
The diff for this file is too large to render.
See raw diff
|
|
|
|
@@ -0,0 +1,1005 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"key": "0:0:0:0:0:0:0:0:0:0",
|
| 4 |
+
"fileName": "Qwen3.6-35B-A3B-LM-Q8_0.gguf",
|
| 5 |
+
"displayName": "LM-Q8_0",
|
| 6 |
+
"shortName": "LM-Q8_0",
|
| 7 |
+
"provider": "llama.cpp",
|
| 8 |
+
"quantFamily": "Q8_0",
|
| 9 |
+
"isHybrid": false,
|
| 10 |
+
"isExternalPureBaseline": false,
|
| 11 |
+
"isExternalRebuiltBaseline": false,
|
| 12 |
+
"isMaterializedTensorMapped": false,
|
| 13 |
+
"isExternalReference": false,
|
| 14 |
+
"downloadTarget": "./../../resolve/main/Qwen3.6-35B-A3B-LM-Q8_0.gguf?download=true",
|
| 15 |
+
"kld": 0.004654,
|
| 16 |
+
"ppl": 5.678789,
|
| 17 |
+
"pplDeltaPercent": -0.14438192368560207,
|
| 18 |
+
"sizeBytes": 36903139744,
|
| 19 |
+
"sizeGB": 36.903139744,
|
| 20 |
+
"sizeGiB": 34.36872711777687,
|
| 21 |
+
"expectedSizeBytes": 36903139744,
|
| 22 |
+
"actualSizeBytes": 36903139744,
|
| 23 |
+
"usedImatrix": true,
|
| 24 |
+
"replacedArtifacts": []
|
| 25 |
+
},
|
| 26 |
+
{
|
| 27 |
+
"key": "118:103:119:119:119:119:118:119:0:119",
|
| 28 |
+
"fileName": "Qwen3.6-35B-A3B-MQ-Q6_K_1.gguf",
|
| 29 |
+
"displayName": "MQ-Q6_K_1",
|
| 30 |
+
"shortName": "MQ-Q6_K_1",
|
| 31 |
+
"provider": "MagicQuant",
|
| 32 |
+
"quantFamily": "Q6_K",
|
| 33 |
+
"isHybrid": true,
|
| 34 |
+
"isExternalPureBaseline": false,
|
| 35 |
+
"isExternalRebuiltBaseline": false,
|
| 36 |
+
"isMaterializedTensorMapped": true,
|
| 37 |
+
"isExternalReference": false,
|
| 38 |
+
"downloadTarget": "./../../resolve/main/Qwen3.6-35B-A3B-MQ-Q6_K_1.gguf?download=true",
|
| 39 |
+
"kld": 0.005149,
|
| 40 |
+
"ppl": 5.673763,
|
| 41 |
+
"pplDeltaPercent": -0.23275892386144126,
|
| 42 |
+
"sizeBytes": 31590586784,
|
| 43 |
+
"sizeGB": 31.590586784000003,
|
| 44 |
+
"sizeGiB": 29.42102661728859,
|
| 45 |
+
"expectedSizeBytes": 31590586784,
|
| 46 |
+
"actualSizeBytes": 31590586784,
|
| 47 |
+
"usedImatrix": true,
|
| 48 |
+
"replacedArtifacts": [
|
| 49 |
+
{
|
| 50 |
+
"key": "118:0:0:0:0:0:0:0:0:0",
|
| 51 |
+
"shortName": "UD-Q6_K_XL",
|
| 52 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-UD-Q6_K_XL",
|
| 53 |
+
"kld": 0.005183,
|
| 54 |
+
"ppl": 5.683428,
|
| 55 |
+
"pplDeltaPercent": -0.0628099173553742,
|
| 56 |
+
"sizeBytes": 31843776928,
|
| 57 |
+
"sizeGB": 31.843776928,
|
| 58 |
+
"sizeGiB": 29.656828314065933,
|
| 59 |
+
"reasonCode": "STRICT_DOMINANCE",
|
| 60 |
+
"reason": "smart baseline-tuning strict dominance fallback: real benchmark validated lower KLD at same-or-smaller size"
|
| 61 |
+
}
|
| 62 |
+
]
|
| 63 |
+
},
|
| 64 |
+
{
|
| 65 |
+
"key": "117:103:118:118:118:118:118:118:0:118",
|
| 66 |
+
"fileName": "Qwen3.6-35B-A3B-MQ-Q5_K_1.gguf",
|
| 67 |
+
"displayName": "MQ-Q5_K_1",
|
| 68 |
+
"shortName": "MQ-Q5_K_1",
|
| 69 |
+
"provider": "MagicQuant",
|
| 70 |
+
"quantFamily": "Q5_K",
|
| 71 |
+
"isHybrid": true,
|
| 72 |
+
"isExternalPureBaseline": false,
|
| 73 |
+
"isExternalRebuiltBaseline": false,
|
| 74 |
+
"isMaterializedTensorMapped": true,
|
| 75 |
+
"isExternalReference": false,
|
| 76 |
+
"downloadTarget": "./../../resolve/main/Qwen3.6-35B-A3B-MQ-Q5_K_1.gguf?download=true",
|
| 77 |
+
"kld": 0.005523,
|
| 78 |
+
"ppl": 5.68002,
|
| 79 |
+
"pplDeltaPercent": -0.12273606470899297,
|
| 80 |
+
"sizeBytes": 29185153440,
|
| 81 |
+
"sizeGB": 29.18515344,
|
| 82 |
+
"sizeGiB": 27.18079224228859,
|
| 83 |
+
"expectedSizeBytes": 29185153440,
|
| 84 |
+
"actualSizeBytes": 29185153440,
|
| 85 |
+
"usedImatrix": true,
|
| 86 |
+
"replacedArtifacts": [
|
| 87 |
+
{
|
| 88 |
+
"key": "117:0:0:0:0:0:0:0:0:0",
|
| 89 |
+
"shortName": "UD-Q6_K",
|
| 90 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-UD-Q6_K",
|
| 91 |
+
"kld": 0.005696,
|
| 92 |
+
"ppl": 5.677694,
|
| 93 |
+
"pplDeltaPercent": -0.1636363636363721,
|
| 94 |
+
"sizeBytes": 29308320160,
|
| 95 |
+
"sizeGB": 29.30832016,
|
| 96 |
+
"sizeGiB": 27.295500189065933,
|
| 97 |
+
"reasonCode": "STRICT_DOMINANCE",
|
| 98 |
+
"reason": "smart baseline-tuning strict dominance fallback: real benchmark validated lower KLD at same-or-smaller size"
|
| 99 |
+
}
|
| 100 |
+
]
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"key": "114:103:115:115:115:115:115:115:0:115",
|
| 104 |
+
"fileName": "Qwen3.6-35B-A3B-MQ-Q5_K_S_1.gguf",
|
| 105 |
+
"displayName": "MQ-Q5_K_S_1",
|
| 106 |
+
"shortName": "MQ-Q5_K_S_1",
|
| 107 |
+
"provider": "MagicQuant",
|
| 108 |
+
"quantFamily": "Q5_K_S",
|
| 109 |
+
"isHybrid": true,
|
| 110 |
+
"isExternalPureBaseline": false,
|
| 111 |
+
"isExternalRebuiltBaseline": false,
|
| 112 |
+
"isMaterializedTensorMapped": true,
|
| 113 |
+
"isExternalReference": false,
|
| 114 |
+
"downloadTarget": "./../../resolve/main/Qwen3.6-35B-A3B-MQ-Q5_K_S_1.gguf?download=true",
|
| 115 |
+
"kld": 0.00673,
|
| 116 |
+
"ppl": 5.679092,
|
| 117 |
+
"pplDeltaPercent": -0.1390539827677241,
|
| 118 |
+
"sizeBytes": 26333026720,
|
| 119 |
+
"sizeGB": 26.33302672,
|
| 120 |
+
"sizeGiB": 24.52454224228859,
|
| 121 |
+
"expectedSizeBytes": 26333026720,
|
| 122 |
+
"actualSizeBytes": 26333026720,
|
| 123 |
+
"usedImatrix": true,
|
| 124 |
+
"replacedArtifacts": [
|
| 125 |
+
{
|
| 126 |
+
"key": "114:0:0:0:0:0:0:0:0:0",
|
| 127 |
+
"shortName": "UD-Q5_K_M",
|
| 128 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-UD-Q5_K_M",
|
| 129 |
+
"kld": 0.007072,
|
| 130 |
+
"ppl": 5.679171,
|
| 131 |
+
"pplDeltaPercent": -0.1376648496571142,
|
| 132 |
+
"sizeBytes": 26456193440,
|
| 133 |
+
"sizeGB": 26.456193440000003,
|
| 134 |
+
"sizeGiB": 24.639250189065933,
|
| 135 |
+
"reasonCode": "STRICT_DOMINANCE",
|
| 136 |
+
"reason": "smart baseline-tuning strict dominance fallback: real benchmark validated lower KLD at same-or-smaller size"
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"key": "116:103:117:117:117:117:117:118:0:117",
|
| 140 |
+
"shortName": "MQ-UD-Q5_K_XL",
|
| 141 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-UD-Q5_K_XL-D-UD-Q6_K-E-UD-IQ3_S-H-UD-Q5_K_XL-K-UD-Q5_K_XL-O-UD-Q5_K_XL-Q-UD-Q5_K_XL-R-UD-Q5_K_XL-U-UD-Q5_K_XL",
|
| 142 |
+
"kld": 0.006853,
|
| 143 |
+
"ppl": 5.685761,
|
| 144 |
+
"pplDeltaPercent": -0.021786530684016002,
|
| 145 |
+
"sizeBytes": 26404329888,
|
| 146 |
+
"sizeGB": 26.404329888,
|
| 147 |
+
"sizeGiB": 24.59094849228859,
|
| 148 |
+
"reasonCode": "STRICT_DOMINANCE",
|
| 149 |
+
"reason": "strict predicted hybrid dominance validated by real benchmark"
|
| 150 |
+
},
|
| 151 |
+
{
|
| 152 |
+
"key": "116:0:0:0:0:0:0:0:0:0",
|
| 153 |
+
"shortName": "UD-Q5_K_XL",
|
| 154 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-UD-Q5_K_XL",
|
| 155 |
+
"kld": 0.006864,
|
| 156 |
+
"ppl": 5.678817,
|
| 157 |
+
"pplDeltaPercent": -0.14388957270970137,
|
| 158 |
+
"sizeBytes": 26592508320,
|
| 159 |
+
"sizeGB": 26.59250832,
|
| 160 |
+
"sizeGiB": 24.766203314065933,
|
| 161 |
+
"reasonCode": "STRICT_DOMINANCE",
|
| 162 |
+
"reason": "smart baseline-tuning strict dominance fallback: real benchmark validated lower KLD at same-or-smaller size"
|
| 163 |
+
}
|
| 164 |
+
]
|
| 165 |
+
},
|
| 166 |
+
{
|
| 167 |
+
"key": "115:103:116:116:116:116:116:116:0:116",
|
| 168 |
+
"fileName": "Qwen3.6-35B-A3B-MQ-Q4_K_M_1.gguf",
|
| 169 |
+
"displayName": "MQ-Q4_K_M_1",
|
| 170 |
+
"shortName": "MQ-Q4_K_M_1",
|
| 171 |
+
"provider": "MagicQuant",
|
| 172 |
+
"quantFamily": "Q4_K_M",
|
| 173 |
+
"isHybrid": true,
|
| 174 |
+
"isExternalPureBaseline": false,
|
| 175 |
+
"isExternalRebuiltBaseline": false,
|
| 176 |
+
"isMaterializedTensorMapped": true,
|
| 177 |
+
"isExternalReference": false,
|
| 178 |
+
"downloadTarget": "./../../resolve/main/Qwen3.6-35B-A3B-MQ-Q4_K_M_1.gguf?download=true",
|
| 179 |
+
"kld": 0.007799,
|
| 180 |
+
"ppl": 5.685451,
|
| 181 |
+
"pplDeltaPercent": -0.027237559345888666,
|
| 182 |
+
"sizeBytes": 24818882976,
|
| 183 |
+
"sizeGB": 24.818882976,
|
| 184 |
+
"sizeGiB": 23.11438599228859,
|
| 185 |
+
"expectedSizeBytes": 24818882976,
|
| 186 |
+
"actualSizeBytes": 24818882976,
|
| 187 |
+
"usedImatrix": true,
|
| 188 |
+
"replacedArtifacts": [
|
| 189 |
+
{
|
| 190 |
+
"key": "115:0:0:0:0:0:0:0:0:0",
|
| 191 |
+
"shortName": "UD-Q5_K_S",
|
| 192 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-UD-Q5_K_S",
|
| 193 |
+
"kld": 0.007824,
|
| 194 |
+
"ppl": 5.692164,
|
| 195 |
+
"pplDeltaPercent": 0.09080358712853392,
|
| 196 |
+
"sizeBytes": 24942049696,
|
| 197 |
+
"sizeGB": 24.942049695999998,
|
| 198 |
+
"sizeGiB": 23.229093939065933,
|
| 199 |
+
"reasonCode": "STRICT_DOMINANCE",
|
| 200 |
+
"reason": "smart baseline-tuning strict dominance fallback: real benchmark validated lower KLD at same-or-smaller size"
|
| 201 |
+
}
|
| 202 |
+
]
|
| 203 |
+
},
|
| 204 |
+
{
|
| 205 |
+
"key": "113:114:114:114:114:114:114:116:0:114",
|
| 206 |
+
"fileName": "Qwen3.6-35B-A3B-MQ-Q4_K_M_2.gguf",
|
| 207 |
+
"displayName": "MQ-Q4_K_M_2",
|
| 208 |
+
"shortName": "MQ-Q4_K_M_2",
|
| 209 |
+
"provider": "MagicQuant",
|
| 210 |
+
"quantFamily": "Q4_K_M",
|
| 211 |
+
"isHybrid": true,
|
| 212 |
+
"isExternalPureBaseline": false,
|
| 213 |
+
"isExternalRebuiltBaseline": false,
|
| 214 |
+
"isMaterializedTensorMapped": true,
|
| 215 |
+
"isExternalReference": false,
|
| 216 |
+
"downloadTarget": "./../../resolve/main/Qwen3.6-35B-A3B-MQ-Q4_K_M_2.gguf?download=true",
|
| 217 |
+
"kld": 0.011007,
|
| 218 |
+
"ppl": 5.694152,
|
| 219 |
+
"pplDeltaPercent": 0.12576050641813968,
|
| 220 |
+
"sizeBytes": 22324804000,
|
| 221 |
+
"sizeGB": 22.324804,
|
| 222 |
+
"sizeGiB": 20.791593939065933,
|
| 223 |
+
"expectedSizeBytes": 22324804000,
|
| 224 |
+
"actualSizeBytes": 22324804000,
|
| 225 |
+
"usedImatrix": true,
|
| 226 |
+
"replacedArtifacts": [
|
| 227 |
+
{
|
| 228 |
+
"key": "113:0:0:0:0:0:0:0:0:0",
|
| 229 |
+
"shortName": "UD-Q4_K_XL",
|
| 230 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-UD-Q4_K_XL",
|
| 231 |
+
"kld": 0.011207,
|
| 232 |
+
"ppl": 5.692678,
|
| 233 |
+
"pplDeltaPercent": 0.09984174432916525,
|
| 234 |
+
"sizeBytes": 22360455584,
|
| 235 |
+
"sizeGB": 22.360455584,
|
| 236 |
+
"sizeGiB": 20.824797064065933,
|
| 237 |
+
"reasonCode": "STRICT_DOMINANCE",
|
| 238 |
+
"reason": "smart baseline-tuning strict dominance fallback: real benchmark validated lower KLD at same-or-smaller size"
|
| 239 |
+
},
|
| 240 |
+
{
|
| 241 |
+
"key": "111:0:0:0:0:0:0:0:0:0",
|
| 242 |
+
"shortName": "UD-Q4_K_M",
|
| 243 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-UD-Q4_K_M",
|
| 244 |
+
"kld": 0.011409,
|
| 245 |
+
"ppl": 5.695264,
|
| 246 |
+
"pplDeltaPercent": 0.14531387374713567,
|
| 247 |
+
"sizeBytes": 22134528416,
|
| 248 |
+
"sizeGB": 22.134528416000002,
|
| 249 |
+
"sizeGiB": 20.61438599228859,
|
| 250 |
+
"reasonCode": "SPACING_COLLAPSE",
|
| 251 |
+
"reason": "meaningful spacing collapse; size gap below 822,164,582 bytes"
|
| 252 |
+
}
|
| 253 |
+
]
|
| 254 |
+
},
|
| 255 |
+
{
|
| 256 |
+
"key": "0:103:1:1:1:1:112:113:0:1",
|
| 257 |
+
"fileName": "Qwen3.6-35B-A3B-MQ-IQ4_NL_1.gguf",
|
| 258 |
+
"displayName": "MQ-IQ4_NL_1",
|
| 259 |
+
"shortName": "MQ-IQ4_NL_1",
|
| 260 |
+
"provider": "MagicQuant",
|
| 261 |
+
"quantFamily": "IQ4_NL",
|
| 262 |
+
"isHybrid": true,
|
| 263 |
+
"isExternalPureBaseline": false,
|
| 264 |
+
"isExternalRebuiltBaseline": false,
|
| 265 |
+
"isMaterializedTensorMapped": true,
|
| 266 |
+
"isExternalReference": false,
|
| 267 |
+
"downloadTarget": "./../../resolve/main/Qwen3.6-35B-A3B-MQ-IQ4_NL_1.gguf?download=true",
|
| 268 |
+
"kld": 0.013277,
|
| 269 |
+
"ppl": 5.708942,
|
| 270 |
+
"pplDeltaPercent": 0.38582732547916526,
|
| 271 |
+
"sizeBytes": 20887239072,
|
| 272 |
+
"sizeGB": 20.887239072,
|
| 273 |
+
"sizeGiB": 19.45275726914406,
|
| 274 |
+
"expectedSizeBytes": 20887239072,
|
| 275 |
+
"actualSizeBytes": 20887239072,
|
| 276 |
+
"usedImatrix": true,
|
| 277 |
+
"replacedArtifacts": [
|
| 278 |
+
{
|
| 279 |
+
"key": "112:0:0:0:0:0:0:0:0:0",
|
| 280 |
+
"shortName": "UD-Q4_K_S",
|
| 281 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-UD-Q4_K_S",
|
| 282 |
+
"kld": 0.013393,
|
| 283 |
+
"ppl": 5.709169,
|
| 284 |
+
"pplDeltaPercent": 0.38981888517671676,
|
| 285 |
+
"sizeBytes": 20893014432,
|
| 286 |
+
"sizeGB": 20.893014432,
|
| 287 |
+
"sizeGiB": 19.45813599228859,
|
| 288 |
+
"reasonCode": "STRICT_DOMINANCE",
|
| 289 |
+
"reason": "strict hybrid dominance: best accepted actual KLD at same-or-smaller real size"
|
| 290 |
+
},
|
| 291 |
+
{
|
| 292 |
+
"key": "0:103:1:2:1:1:112:107:0:1",
|
| 293 |
+
"shortName": "MQ-Q8_0",
|
| 294 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-UD-IQ4_XS-E-UD-IQ3_S-H-Q8_0-K-Q8_0-O-Q8_0-Q-Q6_K-R-Q8_0-U-UD-Q4_K_M",
|
| 295 |
+
"kld": 0.014189,
|
| 296 |
+
"ppl": 5.701422,
|
| 297 |
+
"pplDeltaPercent": 0.2535959205204803,
|
| 298 |
+
"sizeBytes": 20414331296,
|
| 299 |
+
"sizeGB": 20.414331296,
|
| 300 |
+
"sizeGiB": 19.01232758164406,
|
| 301 |
+
"reasonCode": "SPACING_COLLAPSE",
|
| 302 |
+
"reason": "meaningful spacing collapse; size gap below 822,164,582 bytes"
|
| 303 |
+
},
|
| 304 |
+
{
|
| 305 |
+
"key": "0:103:2:2:1:1:114:107:0:1",
|
| 306 |
+
"shortName": "MQ-Q8_0",
|
| 307 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-UD-IQ4_XS-E-UD-IQ3_S-H-Q6_K-K-Q8_0-O-Q8_0-Q-Q6_K-R-Q8_0-U-UD-Q4_K_XL",
|
| 308 |
+
"kld": 0.014221,
|
| 309 |
+
"ppl": 5.697566,
|
| 310 |
+
"pplDeltaPercent": 0.1857921575523097,
|
| 311 |
+
"sizeBytes": 20358273440,
|
| 312 |
+
"sizeGB": 20.35827344,
|
| 313 |
+
"sizeGiB": 18.960119634866714,
|
| 314 |
+
"reasonCode": "SPACING_COLLAPSE",
|
| 315 |
+
"reason": "meaningful spacing collapse; size gap below 822,164,582 bytes"
|
| 316 |
+
},
|
| 317 |
+
{
|
| 318 |
+
"key": "0:103:1:1:1:1:7:107:0:1",
|
| 319 |
+
"shortName": "MQ-Q8_0",
|
| 320 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-UD-IQ4_XS-E-UD-IQ3_S-H-Q8_0-K-Q8_0-O-Q8_0-Q-Q8_0-R-Q8_0-U-IQ4_XS",
|
| 321 |
+
"kld": 0.015257,
|
| 322 |
+
"ppl": 5.716926,
|
| 323 |
+
"pplDeltaPercent": 0.5262176894672002,
|
| 324 |
+
"sizeBytes": 19861207456,
|
| 325 |
+
"sizeGB": 19.861207456,
|
| 326 |
+
"sizeGiB": 18.49719086289406,
|
| 327 |
+
"reasonCode": "SPACING_COLLAPSE",
|
| 328 |
+
"reason": "meaningful spacing collapse; size gap below 822,164,582 bytes"
|
| 329 |
+
},
|
| 330 |
+
{
|
| 331 |
+
"key": "0:103:1:1:1:1:7:111:0:1",
|
| 332 |
+
"shortName": "MQ-Q8_0",
|
| 333 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-UD-Q3_K_XL-E-UD-IQ3_S-H-Q8_0-K-Q8_0-O-Q8_0-Q-Q8_0-R-Q8_0-U-IQ4_XS",
|
| 334 |
+
"kld": 0.015447,
|
| 335 |
+
"ppl": 5.730909,
|
| 336 |
+
"pplDeltaPercent": 0.7720942500439477,
|
| 337 |
+
"sizeBytes": 19903150496,
|
| 338 |
+
"sizeGB": 19.903150496,
|
| 339 |
+
"sizeGiB": 18.53625336289406,
|
| 340 |
+
"reasonCode": "INTERIOR_DISCOVERY",
|
| 341 |
+
"reason": "interior subspace discovery dominated by real benchmark truth"
|
| 342 |
+
},
|
| 343 |
+
{
|
| 344 |
+
"key": "0:3:1:1:1:1:7:111:0:1",
|
| 345 |
+
"shortName": "MQ-Q8_0",
|
| 346 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-UD-Q3_K_XL-E-Q5_K-H-Q8_0-K-Q8_0-O-Q8_0-Q-Q8_0-R-Q8_0-U-IQ4_XS",
|
| 347 |
+
"kld": 0.015428,
|
| 348 |
+
"ppl": 5.731319,
|
| 349 |
+
"pplDeltaPercent": 0.7793036750483519,
|
| 350 |
+
"sizeBytes": 19835607456,
|
| 351 |
+
"sizeGB": 19.835607456,
|
| 352 |
+
"sizeGiB": 18.473349004983902,
|
| 353 |
+
"reasonCode": "SPACING_COLLAPSE",
|
| 354 |
+
"reason": "meaningful spacing collapse; size gap below 822,164,582 bytes"
|
| 355 |
+
},
|
| 356 |
+
{
|
| 357 |
+
"key": "0:3:1:1:1:1:7:107:0:1",
|
| 358 |
+
"shortName": "MQ-Q8_0",
|
| 359 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-UD-IQ4_XS-E-Q5_K-H-Q8_0-K-Q8_0-O-Q8_0-Q-Q8_0-R-Q8_0-U-IQ4_XS",
|
| 360 |
+
"kld": 0.015629,
|
| 361 |
+
"ppl": 5.734911,
|
| 362 |
+
"pplDeltaPercent": 0.8424652716722355,
|
| 363 |
+
"sizeBytes": 19793664416,
|
| 364 |
+
"sizeGB": 19.793664416,
|
| 365 |
+
"sizeGiB": 18.434286504983902,
|
| 366 |
+
"reasonCode": "SPACING_COLLAPSE",
|
| 367 |
+
"reason": "meaningful spacing collapse; size gap below 822,164,582 bytes"
|
| 368 |
+
},
|
| 369 |
+
{
|
| 370 |
+
"key": "0:103:1:2:1:1:7:107:0:1",
|
| 371 |
+
"shortName": "MQ-Q8_0",
|
| 372 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-UD-IQ4_XS-E-UD-IQ3_S-H-Q8_0-K-Q8_0-O-Q8_0-Q-Q6_K-R-Q8_0-U-IQ4_XS",
|
| 373 |
+
"kld": 0.01568,
|
| 374 |
+
"ppl": 5.725093,
|
| 375 |
+
"pplDeltaPercent": 0.6698259187620877,
|
| 376 |
+
"sizeBytes": 19698678176,
|
| 377 |
+
"sizeGB": 19.698678175999998,
|
| 378 |
+
"sizeGiB": 18.34582367539406,
|
| 379 |
+
"reasonCode": "SPACING_COLLAPSE",
|
| 380 |
+
"reason": "meaningful spacing collapse; size gap below 822,164,582 bytes"
|
| 381 |
+
},
|
| 382 |
+
{
|
| 383 |
+
"key": "0:103:2:2:1:1:7:7:0:1",
|
| 384 |
+
"shortName": "MQ-Q8_0",
|
| 385 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-IQ4_XS-E-UD-IQ3_S-H-Q6_K-K-Q8_0-O-Q8_0-Q-Q6_K-R-Q8_0-U-IQ4_XS",
|
| 386 |
+
"kld": 0.017713,
|
| 387 |
+
"ppl": 5.742713,
|
| 388 |
+
"pplDeltaPercent": 0.9796553543168612,
|
| 389 |
+
"sizeBytes": 19320445344,
|
| 390 |
+
"sizeGB": 19.320445344,
|
| 391 |
+
"sizeGiB": 17.993566900491714,
|
| 392 |
+
"reasonCode": "SPACING_COLLAPSE",
|
| 393 |
+
"reason": "meaningful spacing collapse; size gap below 822,164,582 bytes"
|
| 394 |
+
},
|
| 395 |
+
{
|
| 396 |
+
"key": "0:103:1:1:1:1:106:107:0:1",
|
| 397 |
+
"shortName": "MQ-Q8_0",
|
| 398 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-UD-IQ4_XS-E-UD-IQ3_S-H-Q8_0-K-Q8_0-O-Q8_0-Q-Q8_0-R-Q8_0-U-UD-IQ4_NL_XL",
|
| 399 |
+
"kld": 0.02034,
|
| 400 |
+
"ppl": 5.733493,
|
| 401 |
+
"pplDeltaPercent": 0.8175312115350781,
|
| 402 |
+
"sizeBytes": 19150797216,
|
| 403 |
+
"sizeGB": 19.150797215999997,
|
| 404 |
+
"sizeGiB": 17.83556976914406,
|
| 405 |
+
"reasonCode": "NEAR_BASELINE_PREMIUM",
|
| 406 |
+
"reason": "near-baseline replacement within \u002B1% size premium"
|
| 407 |
+
},
|
| 408 |
+
{
|
| 409 |
+
"key": "105:0:0:0:0:0:0:0:0:0",
|
| 410 |
+
"shortName": "UD-IQ4_NL_XL",
|
| 411 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-UD-IQ4_NL_XL",
|
| 412 |
+
"kld": 0.020351,
|
| 413 |
+
"ppl": 5.743716,
|
| 414 |
+
"pplDeltaPercent": 0.9972920696324911,
|
| 415 |
+
"sizeBytes": 19500505504,
|
| 416 |
+
"sizeGB": 19.500505504,
|
| 417 |
+
"sizeGiB": 18.16126099228859,
|
| 418 |
+
"reasonCode": "STRICT_DOMINANCE",
|
| 419 |
+
"reason": "strict hybrid dominance: best accepted actual KLD at same-or-smaller real size"
|
| 420 |
+
},
|
| 421 |
+
{
|
| 422 |
+
"key": "0:7:2:2:1:1:7:7:0:1",
|
| 423 |
+
"shortName": "MQ-Q8_0",
|
| 424 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-IQ4_XS-E-IQ4_XS-H-Q6_K-K-Q8_0-O-Q8_0-Q-Q6_K-R-Q8_0-U-IQ4_XS",
|
| 425 |
+
"kld": 0.018614,
|
| 426 |
+
"ppl": 5.753295,
|
| 427 |
+
"pplDeltaPercent": 1.165728855283969,
|
| 428 |
+
"sizeBytes": 19173439904,
|
| 429 |
+
"sizeGB": 19.173439904,
|
| 430 |
+
"sizeGiB": 17.856657415628433,
|
| 431 |
+
"reasonCode": "SPACING_COLLAPSE",
|
| 432 |
+
"reason": "meaningful spacing collapse; size gap below 822,164,582 bytes"
|
| 433 |
+
}
|
| 434 |
+
]
|
| 435 |
+
},
|
| 436 |
+
{
|
| 437 |
+
"key": "0:103:1:2:1:1:105:111:0:1",
|
| 438 |
+
"fileName": "Qwen3.6-35B-A3B-MQ-IQ3_M_1.gguf",
|
| 439 |
+
"displayName": "MQ-IQ3_M_1",
|
| 440 |
+
"shortName": "MQ-IQ3_M_1",
|
| 441 |
+
"provider": "MagicQuant",
|
| 442 |
+
"quantFamily": "IQ3_M",
|
| 443 |
+
"isHybrid": true,
|
| 444 |
+
"isExternalPureBaseline": false,
|
| 445 |
+
"isExternalRebuiltBaseline": false,
|
| 446 |
+
"isMaterializedTensorMapped": true,
|
| 447 |
+
"isExternalReference": false,
|
| 448 |
+
"downloadTarget": "./../../resolve/main/Qwen3.6-35B-A3B-MQ-IQ3_M_1.gguf?download=true",
|
| 449 |
+
"kld": 0.02633,
|
| 450 |
+
"ppl": 5.764787,
|
| 451 |
+
"pplDeltaPercent": 1.3678037629681699,
|
| 452 |
+
"sizeBytes": 17604147616,
|
| 453 |
+
"sizeGB": 17.604147616000002,
|
| 454 |
+
"sizeGiB": 16.39514008164406,
|
| 455 |
+
"expectedSizeBytes": 17604147616,
|
| 456 |
+
"actualSizeBytes": 17604147616,
|
| 457 |
+
"usedImatrix": true,
|
| 458 |
+
"replacedArtifacts": [
|
| 459 |
+
{
|
| 460 |
+
"key": "104:0:0:0:0:0:0:0:0:0",
|
| 461 |
+
"shortName": "UD-IQ4_NL",
|
| 462 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-UD-IQ4_NL",
|
| 463 |
+
"kld": 0.026609,
|
| 464 |
+
"ppl": 5.772912,
|
| 465 |
+
"pplDeltaPercent": 1.5106734657991832,
|
| 466 |
+
"sizeBytes": 18040887712,
|
| 467 |
+
"sizeGB": 18.040887712,
|
| 468 |
+
"sizeGiB": 16.80188599228859,
|
| 469 |
+
"reasonCode": "STRICT_DOMINANCE",
|
| 470 |
+
"reason": "strict hybrid dominance: best accepted actual KLD at same-or-smaller real size"
|
| 471 |
+
},
|
| 472 |
+
{
|
| 473 |
+
"key": "0:103:1:1:1:1:105:107:0:1",
|
| 474 |
+
"shortName": "MQ-Q8_0",
|
| 475 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-UD-IQ4_XS-E-UD-IQ3_S-H-Q8_0-K-Q8_0-O-Q8_0-Q-Q8_0-R-Q8_0-U-UD-IQ4_NL",
|
| 476 |
+
"kld": 0.02673,
|
| 477 |
+
"ppl": 5.759679,
|
| 478 |
+
"pplDeltaPercent": 1.2779848777914529,
|
| 479 |
+
"sizeBytes": 17724733856,
|
| 480 |
+
"sizeGB": 17.724733856,
|
| 481 |
+
"sizeGiB": 16.50744476914406,
|
| 482 |
+
"reasonCode": "STRICT_DOMINANCE",
|
| 483 |
+
"reason": "strict predicted hybrid dominance validated by real benchmark"
|
| 484 |
+
},
|
| 485 |
+
{
|
| 486 |
+
"key": "106:0:0:0:0:0:0:0:0:0",
|
| 487 |
+
"shortName": "UD-IQ4_XS",
|
| 488 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-UD-IQ4_XS",
|
| 489 |
+
"kld": 0.027103,
|
| 490 |
+
"ppl": 5.763986,
|
| 491 |
+
"pplDeltaPercent": 1.3537190082644588,
|
| 492 |
+
"sizeBytes": 17730509216,
|
| 493 |
+
"sizeGB": 17.730509215999998,
|
| 494 |
+
"sizeGiB": 16.51282349228859,
|
| 495 |
+
"reasonCode": "STRICT_DOMINANCE",
|
| 496 |
+
"reason": "strict hybrid dominance: best accepted actual KLD at same-or-smaller real size"
|
| 497 |
+
},
|
| 498 |
+
{
|
| 499 |
+
"key": "0:103:2:2:1:1:105:7:0:1",
|
| 500 |
+
"shortName": "MQ-Q8_0",
|
| 501 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-IQ4_XS-E-UD-IQ3_S-H-Q6_K-K-Q8_0-O-Q8_0-Q-Q6_K-R-Q8_0-U-UD-IQ4_NL",
|
| 502 |
+
"kld": 0.028347,
|
| 503 |
+
"ppl": 5.764639,
|
| 504 |
+
"pplDeltaPercent": 1.3652013363812128,
|
| 505 |
+
"sizeBytes": 17183971744,
|
| 506 |
+
"sizeGB": 17.183971743999997,
|
| 507 |
+
"sizeGiB": 16.003820806741714,
|
| 508 |
+
"reasonCode": "SPACING_COLLAPSE",
|
| 509 |
+
"reason": "meaningful spacing collapse; size gap below 822,164,582 bytes"
|
| 510 |
+
},
|
| 511 |
+
{
|
| 512 |
+
"key": "0:7:2:2:1:1:105:107:0:1",
|
| 513 |
+
"shortName": "MQ-Q8_0",
|
| 514 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-UD-IQ4_XS-E-IQ4_XS-H-Q6_K-K-Q8_0-O-Q8_0-Q-Q6_K-R-Q8_0-U-UD-IQ4_NL",
|
| 515 |
+
"kld": 0.028525,
|
| 516 |
+
"ppl": 5.794961,
|
| 517 |
+
"pplDeltaPercent": 1.898382275364859,
|
| 518 |
+
"sizeBytes": 17292032416,
|
| 519 |
+
"sizeGB": 17.292032416,
|
| 520 |
+
"sizeGiB": 16.104460150003433,
|
| 521 |
+
"reasonCode": "INTERIOR_DISCOVERY",
|
| 522 |
+
"reason": "interior subspace discovery dominated by real benchmark truth"
|
| 523 |
+
},
|
| 524 |
+
{
|
| 525 |
+
"key": "0:103:1:3:1:1:105:7:0:1",
|
| 526 |
+
"shortName": "MQ-Q8_0",
|
| 527 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-IQ4_XS-E-UD-IQ3_S-H-Q8_0-K-Q8_0-O-Q8_0-Q-Q5_K-R-Q8_0-U-UD-IQ4_NL",
|
| 528 |
+
"kld": 0.028995,
|
| 529 |
+
"ppl": 5.770342,
|
| 530 |
+
"pplDeltaPercent": 1.4654826797960265,
|
| 531 |
+
"sizeBytes": 17249204640,
|
| 532 |
+
"sizeGB": 17.24920464,
|
| 533 |
+
"sizeGiB": 16.06457367539406,
|
| 534 |
+
"reasonCode": "INTERIOR_DISCOVERY",
|
| 535 |
+
"reason": "interior subspace discovery dominated by real benchmark truth"
|
| 536 |
+
},
|
| 537 |
+
{
|
| 538 |
+
"key": "0:7:2:3:1:1:105:107:0:1",
|
| 539 |
+
"shortName": "MQ-Q8_0",
|
| 540 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-UD-IQ4_XS-E-IQ4_XS-H-Q6_K-K-Q8_0-O-Q8_0-Q-Q5_K-R-Q8_0-U-UD-IQ4_NL",
|
| 541 |
+
"kld": 0.029854,
|
| 542 |
+
"ppl": 5.794784,
|
| 543 |
+
"pplDeltaPercent": 1.895269913838573,
|
| 544 |
+
"sizeBytes": 17234098592,
|
| 545 |
+
"sizeGB": 17.234098592,
|
| 546 |
+
"sizeGiB": 16.050505071878433,
|
| 547 |
+
"reasonCode": "INTERIOR_DISCOVERY",
|
| 548 |
+
"reason": "interior subspace discovery dominated by real benchmark truth"
|
| 549 |
+
},
|
| 550 |
+
{
|
| 551 |
+
"key": "0:7:2:2:1:1:105:7:0:1",
|
| 552 |
+
"shortName": "MQ-Q8_0",
|
| 553 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-IQ4_XS-E-IQ4_XS-H-Q6_K-K-Q8_0-O-Q8_0-Q-Q6_K-R-Q8_0-U-UD-IQ4_NL",
|
| 554 |
+
"kld": 0.029406,
|
| 555 |
+
"ppl": 5.789109,
|
| 556 |
+
"pplDeltaPercent": 1.7954809213996756,
|
| 557 |
+
"sizeBytes": 17036966304,
|
| 558 |
+
"sizeGB": 17.036966304,
|
| 559 |
+
"sizeGiB": 15.866911321878433,
|
| 560 |
+
"reasonCode": "SPACING_COLLAPSE",
|
| 561 |
+
"reason": "meaningful spacing collapse; size gap below 822,164,582 bytes"
|
| 562 |
+
},
|
| 563 |
+
{
|
| 564 |
+
"key": "108:0:0:0:0:0:0:0:0:0",
|
| 565 |
+
"shortName": "UD-Q3_K_M",
|
| 566 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-UD-Q3_K_M",
|
| 567 |
+
"kld": 0.036042,
|
| 568 |
+
"ppl": 5.791067,
|
| 569 |
+
"pplDeltaPercent": 1.8299103217865251,
|
| 570 |
+
"sizeBytes": 16600709536,
|
| 571 |
+
"sizeGB": 16.600709536000004,
|
| 572 |
+
"sizeGiB": 15.460615545511246,
|
| 573 |
+
"reasonCode": "SPACING_COLLAPSE",
|
| 574 |
+
"reason": "meaningful spacing collapse; size gap below 822,164,582 bytes"
|
| 575 |
+
},
|
| 576 |
+
{
|
| 577 |
+
"key": "0:103:2:2:1:1:105:103:0:1",
|
| 578 |
+
"shortName": "MQ-Q8_0",
|
| 579 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-UD-IQ3_S-E-UD-IQ3_S-H-Q6_K-K-Q8_0-O-Q8_0-Q-Q6_K-R-Q8_0-U-UD-IQ4_NL",
|
| 580 |
+
"kld": 0.036701,
|
| 581 |
+
"ppl": 5.805336,
|
| 582 |
+
"pplDeltaPercent": 2.0808158959029246,
|
| 583 |
+
"sizeBytes": 16187365792,
|
| 584 |
+
"sizeGB": 16.187365791999998,
|
| 585 |
+
"sizeGiB": 15.075659185647964,
|
| 586 |
+
"reasonCode": "SPACING_COLLAPSE",
|
| 587 |
+
"reason": "meaningful spacing collapse; size gap below 822,164,582 bytes"
|
| 588 |
+
},
|
| 589 |
+
{
|
| 590 |
+
"key": "0:7:2:1:1:1:105:103:0:1",
|
| 591 |
+
"shortName": "MQ-Q8_0",
|
| 592 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-UD-IQ3_S-E-IQ4_XS-H-Q6_K-K-Q8_0-O-Q8_0-Q-Q8_0-R-Q8_0-U-UD-IQ4_NL",
|
| 593 |
+
"kld": 0.036763,
|
| 594 |
+
"ppl": 5.829303,
|
| 595 |
+
"pplDeltaPercent": 2.5022507473184468,
|
| 596 |
+
"sizeBytes": 16202889632,
|
| 597 |
+
"sizeGB": 16.202889631999998,
|
| 598 |
+
"sizeGiB": 15.090116888284683,
|
| 599 |
+
"reasonCode": "INTERIOR_DISCOVERY",
|
| 600 |
+
"reason": "interior subspace discovery dominated by real benchmark truth"
|
| 601 |
+
},
|
| 602 |
+
{
|
| 603 |
+
"key": "0:103:1:3:1:3:105:103:0:1",
|
| 604 |
+
"shortName": "MQ-Q8_0",
|
| 605 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-UD-IQ3_S-E-UD-IQ3_S-H-Q8_0-K-Q8_0-O-Q5_K-Q-Q5_K-R-Q8_0-U-UD-IQ4_NL",
|
| 606 |
+
"kld": 0.037692,
|
| 607 |
+
"ppl": 5.816251,
|
| 608 |
+
"pplDeltaPercent": 2.2727448566906983,
|
| 609 |
+
"sizeBytes": 16221141408,
|
| 610 |
+
"sizeGB": 16.221141408,
|
| 611 |
+
"sizeGiB": 15.107115179300308,
|
| 612 |
+
"reasonCode": "INTERIOR_DISCOVERY",
|
| 613 |
+
"reason": "interior subspace discovery dominated by real benchmark truth"
|
| 614 |
+
},
|
| 615 |
+
{
|
| 616 |
+
"key": "0:4:2:1:1:1:105:103:0:1",
|
| 617 |
+
"shortName": "MQ-Q8_0",
|
| 618 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-UD-IQ3_S-E-Q4_K_M-H-Q6_K-K-Q8_0-O-Q8_0-Q-Q8_0-R-Q8_0-U-UD-IQ4_NL",
|
| 619 |
+
"kld": 0.037792,
|
| 620 |
+
"ppl": 5.818985,
|
| 621 |
+
"pplDeltaPercent": 2.32081941269561,
|
| 622 |
+
"sizeBytes": 16218782112,
|
| 623 |
+
"sizeGB": 16.218782112,
|
| 624 |
+
"sizeGiB": 15.104917913675308,
|
| 625 |
+
"reasonCode": "INTERIOR_DISCOVERY",
|
| 626 |
+
"reason": "interior subspace discovery dominated by real benchmark truth"
|
| 627 |
+
},
|
| 628 |
+
{
|
| 629 |
+
"key": "0:7:2:2:1:1:105:103:0:1",
|
| 630 |
+
"shortName": "MQ-Q8_0",
|
| 631 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-UD-IQ3_S-E-IQ4_XS-H-Q6_K-K-Q8_0-O-Q8_0-Q-Q6_K-R-Q8_0-U-UD-IQ4_NL",
|
| 632 |
+
"kld": 0.037456,
|
| 633 |
+
"ppl": 5.834445,
|
| 634 |
+
"pplDeltaPercent": 2.5926674872516156,
|
| 635 |
+
"sizeBytes": 16040360352,
|
| 636 |
+
"sizeGB": 16.040360352,
|
| 637 |
+
"sizeGiB": 14.938749700784683,
|
| 638 |
+
"reasonCode": "SPACING_COLLAPSE",
|
| 639 |
+
"reason": "meaningful spacing collapse; size gap below 822,164,582 bytes"
|
| 640 |
+
},
|
| 641 |
+
{
|
| 642 |
+
"key": "109:0:0:0:0:0:0:0:0:0",
|
| 643 |
+
"shortName": "UD-Q3_K_S",
|
| 644 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-UD-Q3_K_S",
|
| 645 |
+
"kld": 0.042683,
|
| 646 |
+
"ppl": 5.848953,
|
| 647 |
+
"pplDeltaPercent": 2.847775628626685,
|
| 648 |
+
"sizeBytes": 15359195552,
|
| 649 |
+
"sizeGB": 15.359195552,
|
| 650 |
+
"sizeGiB": 14.304365545511246,
|
| 651 |
+
"reasonCode": "SPACING_COLLAPSE",
|
| 652 |
+
"reason": "meaningful spacing collapse; size gap below 822,164,582 bytes"
|
| 653 |
+
},
|
| 654 |
+
{
|
| 655 |
+
"key": "0:103:2:2:1:1:109:108:0:1",
|
| 656 |
+
"shortName": "MQ-Q8_0",
|
| 657 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-UD-Q2_K_XL-E-UD-IQ3_S-H-Q6_K-K-Q8_0-O-Q8_0-Q-Q6_K-R-Q8_0-U-UD-Q3_K_M",
|
| 658 |
+
"kld": 0.049366,
|
| 659 |
+
"ppl": 5.808506,
|
| 660 |
+
"pplDeltaPercent": 2.136557059961317,
|
| 661 |
+
"sizeBytes": 14755264928,
|
| 662 |
+
"sizeGB": 14.755264927999999,
|
| 663 |
+
"sizeGiB": 13.741911321878433,
|
| 664 |
+
"reasonCode": "SPACING_COLLAPSE",
|
| 665 |
+
"reason": "meaningful spacing collapse; size gap below 822,164,582 bytes"
|
| 666 |
+
},
|
| 667 |
+
{
|
| 668 |
+
"key": "0:7:2:1:1:1:109:108:0:1",
|
| 669 |
+
"shortName": "MQ-Q8_0",
|
| 670 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-UD-Q2_K_XL-E-IQ4_XS-H-Q6_K-K-Q8_0-O-Q8_0-Q-Q8_0-R-Q8_0-U-UD-Q3_K_M",
|
| 671 |
+
"kld": 0.050155,
|
| 672 |
+
"ppl": 5.817412,
|
| 673 |
+
"pplDeltaPercent": 2.293159838227532,
|
| 674 |
+
"sizeBytes": 14770788768,
|
| 675 |
+
"sizeGB": 14.770788768,
|
| 676 |
+
"sizeGiB": 13.756369024515152,
|
| 677 |
+
"reasonCode": "INTERIOR_DISCOVERY",
|
| 678 |
+
"reason": "interior subspace discovery dominated by real benchmark truth"
|
| 679 |
+
},
|
| 680 |
+
{
|
| 681 |
+
"key": "0:7:1:2:1:1:109:108:0:1",
|
| 682 |
+
"shortName": "MQ-Q8_0",
|
| 683 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-UD-Q2_K_XL-E-IQ4_XS-H-Q8_0-K-Q8_0-O-Q8_0-Q-Q6_K-R-Q8_0-U-UD-Q3_K_M",
|
| 684 |
+
"kld": 0.049486,
|
| 685 |
+
"ppl": 5.831284,
|
| 686 |
+
"pplDeltaPercent": 2.5370845788640732,
|
| 687 |
+
"sizeBytes": 14731426208,
|
| 688 |
+
"sizeGB": 14.731426208,
|
| 689 |
+
"sizeGiB": 13.719709783792496,
|
| 690 |
+
"reasonCode": "SPACING_COLLAPSE",
|
| 691 |
+
"reason": "meaningful spacing collapse; size gap below 822,164,582 bytes"
|
| 692 |
+
},
|
| 693 |
+
{
|
| 694 |
+
"key": "0:7:2:1:1:1:109:104:0:1",
|
| 695 |
+
"shortName": "MQ-Q8_0",
|
| 696 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-UD-IQ3_XXS-E-IQ4_XS-H-Q6_K-K-Q8_0-O-Q8_0-Q-Q8_0-R-Q8_0-U-UD-Q3_K_M",
|
| 697 |
+
"kld": 0.049772,
|
| 698 |
+
"ppl": 5.817175,
|
| 699 |
+
"pplDeltaPercent": 2.288992438895718,
|
| 700 |
+
"sizeBytes": 14730688928,
|
| 701 |
+
"sizeGB": 14.730688928,
|
| 702 |
+
"sizeGiB": 13.719023138284683,
|
| 703 |
+
"reasonCode": "SPACING_COLLAPSE",
|
| 704 |
+
"reason": "meaningful spacing collapse; size gap below 822,164,582 bytes"
|
| 705 |
+
},
|
| 706 |
+
{
|
| 707 |
+
"key": "0:7:2:2:1:1:109:104:0:1",
|
| 708 |
+
"shortName": "MQ-Q8_0",
|
| 709 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-UD-IQ3_XXS-E-IQ4_XS-H-Q6_K-K-Q8_0-O-Q8_0-Q-Q6_K-R-Q8_0-U-UD-Q3_K_M",
|
| 710 |
+
"kld": 0.050828,
|
| 711 |
+
"ppl": 5.823728,
|
| 712 |
+
"pplDeltaPercent": 2.4042201512220807,
|
| 713 |
+
"sizeBytes": 14568159648,
|
| 714 |
+
"sizeGB": 14.568159648,
|
| 715 |
+
"sizeGiB": 13.567655950784683,
|
| 716 |
+
"reasonCode": "SPACING_COLLAPSE",
|
| 717 |
+
"reason": "meaningful spacing collapse; size gap below 822,164,582 bytes"
|
| 718 |
+
}
|
| 719 |
+
]
|
| 720 |
+
},
|
| 721 |
+
{
|
| 722 |
+
"key": "102:0:0:0:0:0:0:0:0:0",
|
| 723 |
+
"fileName": "Qwen3.6-35B-A3B-UD-IQ3_S.gguf",
|
| 724 |
+
"displayName": "UD-IQ3_S",
|
| 725 |
+
"shortName": "UD-IQ3_S",
|
| 726 |
+
"provider": "Unsloth",
|
| 727 |
+
"quantFamily": "UD-IQ3_S",
|
| 728 |
+
"isHybrid": false,
|
| 729 |
+
"isExternalPureBaseline": true,
|
| 730 |
+
"isExternalRebuiltBaseline": false,
|
| 731 |
+
"isMaterializedTensorMapped": false,
|
| 732 |
+
"isExternalReference": false,
|
| 733 |
+
"downloadTarget": "./../../resolve/main/Qwen3.6-35B-A3B-UD-IQ3_S.gguf?download=true",
|
| 734 |
+
"kld": 0.068376,
|
| 735 |
+
"ppl": 5.970404,
|
| 736 |
+
"pplDeltaPercent": 4.983365570599613,
|
| 737 |
+
"sizeBytes": 13676722592,
|
| 738 |
+
"sizeGB": 13.676722592,
|
| 739 |
+
"sizeGiB": 12.73744049668312,
|
| 740 |
+
"expectedSizeBytes": 13676722592,
|
| 741 |
+
"actualSizeBytes": 13676722592,
|
| 742 |
+
"usedImatrix": true,
|
| 743 |
+
"replacedArtifacts": [
|
| 744 |
+
{
|
| 745 |
+
"key": "0:3:2:2:1:1:103:104:0:1",
|
| 746 |
+
"shortName": "MQ-Q8_0",
|
| 747 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-UD-IQ3_XXS-E-Q5_K-H-Q6_K-K-Q8_0-O-Q8_0-Q-Q6_K-R-Q8_0-U-UD-IQ3_S",
|
| 748 |
+
"kld": 0.070443,
|
| 749 |
+
"ppl": 5.913238,
|
| 750 |
+
"pplDeltaPercent": 3.9781607174256988,
|
| 751 |
+
"sizeBytes": 13285128608,
|
| 752 |
+
"sizeGB": 13.285128607999999,
|
| 753 |
+
"sizeGiB": 12.372740179300308,
|
| 754 |
+
"reasonCode": "SPACING_COLLAPSE",
|
| 755 |
+
"reason": "meaningful spacing collapse; size gap below 822,164,582 bytes"
|
| 756 |
+
},
|
| 757 |
+
{
|
| 758 |
+
"key": "103:104:104:104:104:104:104:108:0:104",
|
| 759 |
+
"shortName": "MQ-UD-IQ3_XXS",
|
| 760 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-UD-IQ3_XXS-D-UD-Q2_K_XL-E-UD-IQ3_XXS-H-UD-IQ3_XXS-K-UD-IQ3_XXS-O-UD-IQ3_XXS-Q-UD-IQ3_XXS-R-UD-IQ3_XXS-U-UD-IQ3_XXS",
|
| 761 |
+
"kld": 0.0709,
|
| 762 |
+
"ppl": 5.908587,
|
| 763 |
+
"pplDeltaPercent": 3.8963777035343683,
|
| 764 |
+
"sizeBytes": 13251254688,
|
| 765 |
+
"sizeGB": 13.251254688,
|
| 766 |
+
"sizeGiB": 12.34119263291359,
|
| 767 |
+
"reasonCode": "SPACING_COLLAPSE",
|
| 768 |
+
"reason": "meaningful spacing collapse; size gap below 822,164,582 bytes"
|
| 769 |
+
},
|
| 770 |
+
{
|
| 771 |
+
"key": "103:0:0:0:0:0:0:0:0:0",
|
| 772 |
+
"shortName": "UD-IQ3_XXS",
|
| 773 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-UD-IQ3_XXS",
|
| 774 |
+
"kld": 0.07148,
|
| 775 |
+
"ppl": 5.908789,
|
| 776 |
+
"pplDeltaPercent": 3.899929664146287,
|
| 777 |
+
"sizeBytes": 13211154848,
|
| 778 |
+
"sizeGB": 13.211154848,
|
| 779 |
+
"sizeGiB": 12.30384674668312,
|
| 780 |
+
"reasonCode": "NEAR_BASELINE_PREMIUM",
|
| 781 |
+
"reason": "smart baseline-tuning near-baseline fallback within \u002B1% size premium"
|
| 782 |
+
},
|
| 783 |
+
{
|
| 784 |
+
"key": "0:4:2:7:7:3:103:10:0:1",
|
| 785 |
+
"shortName": "MQ-Q8_0",
|
| 786 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-IQ3_XXS-E-Q4_K_M-H-Q6_K-K-IQ4_XS-O-Q5_K-Q-IQ4_XS-R-Q8_0-U-UD-IQ3_S",
|
| 787 |
+
"kld": 0.077533,
|
| 788 |
+
"ppl": 5.959504,
|
| 789 |
+
"pplDeltaPercent": 4.791700369263225,
|
| 790 |
+
"sizeBytes": 12927367584,
|
| 791 |
+
"sizeGB": 12.927367584,
|
| 792 |
+
"sizeGiB": 12.039549261331558,
|
| 793 |
+
"reasonCode": "SPACING_COLLAPSE",
|
| 794 |
+
"reason": "meaningful spacing collapse; size gap below 822,164,582 bytes"
|
| 795 |
+
},
|
| 796 |
+
{
|
| 797 |
+
"key": "0:4:2:6:7:3:103:10:0:1",
|
| 798 |
+
"shortName": "MQ-Q8_0",
|
| 799 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-IQ3_XXS-E-Q4_K_M-H-Q6_K-K-IQ4_XS-O-Q5_K-Q-IQ4_NL-R-Q8_0-U-UD-IQ3_S",
|
| 800 |
+
"kld": 0.077612,
|
| 801 |
+
"ppl": 5.953623,
|
| 802 |
+
"pplDeltaPercent": 4.688289080358714,
|
| 803 |
+
"sizeBytes": 12932610464,
|
| 804 |
+
"sizeGB": 12.932610464,
|
| 805 |
+
"sizeGiB": 12.044432073831558,
|
| 806 |
+
"reasonCode": "INTERIOR_DISCOVERY",
|
| 807 |
+
"reason": "interior subspace discovery dominated by real benchmark truth"
|
| 808 |
+
},
|
| 809 |
+
{
|
| 810 |
+
"key": "0:7:2:6:1:3:103:10:0:1",
|
| 811 |
+
"shortName": "MQ-Q8_0",
|
| 812 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-IQ3_XXS-E-IQ4_XS-H-Q6_K-K-Q8_0-O-Q5_K-Q-IQ4_NL-R-Q8_0-U-UD-IQ3_S",
|
| 813 |
+
"kld": 0.077967,
|
| 814 |
+
"ppl": 5.956834,
|
| 815 |
+
"pplDeltaPercent": 4.744751186917521,
|
| 816 |
+
"sizeBytes": 12926220704,
|
| 817 |
+
"sizeGB": 12.926220703999999,
|
| 818 |
+
"sizeGiB": 12.038481146097183,
|
| 819 |
+
"reasonCode": "SPACING_COLLAPSE",
|
| 820 |
+
"reason": "meaningful spacing collapse; size gap below 822,164,582 bytes"
|
| 821 |
+
},
|
| 822 |
+
{
|
| 823 |
+
"key": "0:7:2:7:1:3:103:10:0:1",
|
| 824 |
+
"shortName": "MQ-Q8_0",
|
| 825 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-IQ3_XXS-E-IQ4_XS-H-Q6_K-K-Q8_0-O-Q5_K-Q-IQ4_XS-R-Q8_0-U-UD-IQ3_S",
|
| 826 |
+
"kld": 0.077972,
|
| 827 |
+
"ppl": 5.964178,
|
| 828 |
+
"pplDeltaPercent": 4.873887814313348,
|
| 829 |
+
"sizeBytes": 12920977824,
|
| 830 |
+
"sizeGB": 12.920977824,
|
| 831 |
+
"sizeGiB": 12.033598333597183,
|
| 832 |
+
"reasonCode": "SPACING_COLLAPSE",
|
| 833 |
+
"reason": "meaningful spacing collapse; size gap below 822,164,582 bytes"
|
| 834 |
+
},
|
| 835 |
+
{
|
| 836 |
+
"key": "0:4:2:15:1:1:103:10:0:1",
|
| 837 |
+
"shortName": "MQ-Q8_0",
|
| 838 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-IQ3_XXS-E-Q4_K_M-H-Q6_K-K-Q8_0-O-Q8_0-Q-Q4_K_S-R-Q8_0-U-UD-IQ3_S",
|
| 839 |
+
"kld": 0.078411,
|
| 840 |
+
"ppl": 5.964572,
|
| 841 |
+
"pplDeltaPercent": 4.880815895902939,
|
| 842 |
+
"sizeBytes": 12916947360,
|
| 843 |
+
"sizeGB": 12.91694736,
|
| 844 |
+
"sizeGiB": 12.029844671487808,
|
| 845 |
+
"reasonCode": "SPACING_COLLAPSE",
|
| 846 |
+
"reason": "meaningful spacing collapse; size gap below 822,164,582 bytes"
|
| 847 |
+
},
|
| 848 |
+
{
|
| 849 |
+
"key": "0:7:2:2:1:1:108:104:0:1",
|
| 850 |
+
"shortName": "MQ-Q8_0",
|
| 851 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-UD-IQ3_XXS-E-IQ4_XS-H-Q6_K-K-Q8_0-O-Q8_0-Q-Q6_K-R-Q8_0-U-UD-Q2_K_XL",
|
| 852 |
+
"kld": 0.090083,
|
| 853 |
+
"ppl": 5.990322,
|
| 854 |
+
"pplDeltaPercent": 5.333602954105849,
|
| 855 |
+
"sizeBytes": 12574046624,
|
| 856 |
+
"sizeGB": 12.574046624000001,
|
| 857 |
+
"sizeGiB": 11.710493475198746,
|
| 858 |
+
"reasonCode": "SPACING_COLLAPSE",
|
| 859 |
+
"reason": "meaningful spacing collapse; size gap below 822,164,582 bytes"
|
| 860 |
+
},
|
| 861 |
+
{
|
| 862 |
+
"key": "0:7:2:3:1:1:108:104:0:1",
|
| 863 |
+
"shortName": "MQ-Q8_0",
|
| 864 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-Q8_0-D-UD-IQ3_XXS-E-IQ4_XS-H-Q6_K-K-Q8_0-O-Q8_0-Q-Q5_K-R-Q8_0-U-UD-Q2_K_XL",
|
| 865 |
+
"kld": 0.091149,
|
| 866 |
+
"ppl": 5.997713,
|
| 867 |
+
"pplDeltaPercent": 5.463566027782658,
|
| 868 |
+
"sizeBytes": 12516112800,
|
| 869 |
+
"sizeGB": 12.5161128,
|
| 870 |
+
"sizeGiB": 11.656538397073746,
|
| 871 |
+
"reasonCode": "SPACING_COLLAPSE",
|
| 872 |
+
"reason": "meaningful spacing collapse; size gap below 822,164,582 bytes"
|
| 873 |
+
},
|
| 874 |
+
{
|
| 875 |
+
"key": "107:0:0:0:0:0:0:0:0:0",
|
| 876 |
+
"shortName": "UD-Q2_K_XL",
|
| 877 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-UD-Q2_K_XL",
|
| 878 |
+
"kld": 0.09941,
|
| 879 |
+
"ppl": 6.039307,
|
| 880 |
+
"pplDeltaPercent": 6.1949534024969175,
|
| 881 |
+
"sizeBytes": 12290628000,
|
| 882 |
+
"sizeGB": 12.290628,
|
| 883 |
+
"sizeGiB": 11.44653931260109,
|
| 884 |
+
"reasonCode": "SPACING_COLLAPSE",
|
| 885 |
+
"reason": "meaningful spacing collapse; size gap below 822,164,582 bytes"
|
| 886 |
+
},
|
| 887 |
+
{
|
| 888 |
+
"key": "100:0:0:0:0:0:0:0:0:0",
|
| 889 |
+
"shortName": "UD-IQ2_M",
|
| 890 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-UD-IQ2_M",
|
| 891 |
+
"kld": 0.119666,
|
| 892 |
+
"ppl": 6.077022,
|
| 893 |
+
"pplDeltaPercent": 6.858132583084228,
|
| 894 |
+
"sizeBytes": 11522701728,
|
| 895 |
+
"sizeGB": 11.522701728,
|
| 896 |
+
"sizeGiB": 10.731352239847183,
|
| 897 |
+
"reasonCode": "SPACING_COLLAPSE",
|
| 898 |
+
"reason": "meaningful spacing collapse; size gap below 822,164,582 bytes"
|
| 899 |
+
},
|
| 900 |
+
{
|
| 901 |
+
"key": "101:102:102:108:102:102:102:102:0:102",
|
| 902 |
+
"shortName": "MQ-UD-IQ2_XXS",
|
| 903 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-UD-IQ2_XXS-D-UD-IQ2_XXS-E-UD-IQ2_XXS-H-UD-IQ2_XXS-K-UD-IQ2_XXS-O-UD-IQ2_XXS-Q-UD-Q2_K_XL-R-UD-IQ2_XXS-U-UD-IQ2_XXS",
|
| 904 |
+
"kld": 0.136141,
|
| 905 |
+
"ppl": 6.162199,
|
| 906 |
+
"pplDeltaPercent": 8.35588183576578,
|
| 907 |
+
"sizeBytes": 10758814112,
|
| 908 |
+
"sizeGB": 10.758814112,
|
| 909 |
+
"sizeGiB": 10.019926458597183,
|
| 910 |
+
"reasonCode": "SPACING_COLLAPSE",
|
| 911 |
+
"reason": "meaningful spacing collapse; size gap below 822,164,582 bytes"
|
| 912 |
+
},
|
| 913 |
+
{
|
| 914 |
+
"key": "101:0:0:0:0:0:0:0:0:0",
|
| 915 |
+
"shortName": "UD-IQ2_XXS",
|
| 916 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-UD-IQ2_XXS",
|
| 917 |
+
"kld": 0.136725,
|
| 918 |
+
"ppl": 6.170083,
|
| 919 |
+
"pplDeltaPercent": 8.494513803411282,
|
| 920 |
+
"sizeBytes": 10756585888,
|
| 921 |
+
"sizeGB": 10.756585888,
|
| 922 |
+
"sizeGiB": 10.017851263284683,
|
| 923 |
+
"reasonCode": "NEAR_BASELINE_PREMIUM",
|
| 924 |
+
"reason": "smart baseline-tuning near-baseline fallback within \u002B1% size premium"
|
| 925 |
+
},
|
| 926 |
+
{
|
| 927 |
+
"key": "11:12:12:15:18:7:12:12:0:12",
|
| 928 |
+
"shortName": "MQ-IQ2_XS",
|
| 929 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-IQ2_XS-D-IQ2_XS-E-IQ2_XS-H-IQ2_XS-K-IQ3_M-O-IQ4_XS-Q-Q4_K_S-R-IQ2_XS-U-IQ2_XS",
|
| 930 |
+
"kld": 0.215492,
|
| 931 |
+
"ppl": 6.718442,
|
| 932 |
+
"pplDeltaPercent": 18.136838403376107,
|
| 933 |
+
"sizeBytes": 10588284320,
|
| 934 |
+
"sizeGB": 10.588284320000001,
|
| 935 |
+
"sizeGiB": 9.861108213663101,
|
| 936 |
+
"reasonCode": "SPACING_COLLAPSE",
|
| 937 |
+
"reason": "meaningful spacing collapse; size gap below 822,164,582 bytes"
|
| 938 |
+
},
|
| 939 |
+
{
|
| 940 |
+
"key": "11:0:0:0:0:0:0:0:0:0",
|
| 941 |
+
"shortName": "LM-IQ2_XS",
|
| 942 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-IQ2_XS",
|
| 943 |
+
"kld": 0.26653,
|
| 944 |
+
"ppl": 7.031325,
|
| 945 |
+
"pplDeltaPercent": 23.638561631791795,
|
| 946 |
+
"sizeBytes": 10507030944,
|
| 947 |
+
"sizeGB": 10.507030944,
|
| 948 |
+
"sizeGiB": 9.785435110330582,
|
| 949 |
+
"reasonCode": "NEAR_BASELINE_PREMIUM",
|
| 950 |
+
"reason": "smart baseline-tuning near-baseline fallback within \u002B1% size premium"
|
| 951 |
+
},
|
| 952 |
+
{
|
| 953 |
+
"key": "10:0:0:0:0:0:0:0:0:0",
|
| 954 |
+
"shortName": "LM-IQ2_S",
|
| 955 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-IQ2_S",
|
| 956 |
+
"kld": 0.236115,
|
| 957 |
+
"ppl": 6.828657,
|
| 958 |
+
"pplDeltaPercent": 20.07485493230173,
|
| 959 |
+
"sizeBytes": 10652479904,
|
| 960 |
+
"sizeGB": 10.652479904,
|
| 961 |
+
"sizeGiB": 9.920895010232925,
|
| 962 |
+
"reasonCode": "NEAR_BASELINE_PREMIUM",
|
| 963 |
+
"reason": "near-baseline size-premium replacement validated by real benchmark"
|
| 964 |
+
}
|
| 965 |
+
]
|
| 966 |
+
},
|
| 967 |
+
{
|
| 968 |
+
"key": "12:13:13:15:18:7:13:13:0:13",
|
| 969 |
+
"fileName": "Qwen3.6-35B-A3B-MQ-IQ2_XXS_1.gguf",
|
| 970 |
+
"displayName": "MQ-IQ2_XXS_1",
|
| 971 |
+
"shortName": "MQ-IQ2_XXS_1",
|
| 972 |
+
"provider": "MagicQuant",
|
| 973 |
+
"quantFamily": "IQ2_XXS",
|
| 974 |
+
"isHybrid": true,
|
| 975 |
+
"isExternalPureBaseline": false,
|
| 976 |
+
"isExternalRebuiltBaseline": false,
|
| 977 |
+
"isMaterializedTensorMapped": true,
|
| 978 |
+
"isExternalReference": false,
|
| 979 |
+
"downloadTarget": "./../../resolve/main/Qwen3.6-35B-A3B-MQ-IQ2_XXS_1.gguf?download=true",
|
| 980 |
+
"kld": 0.27513,
|
| 981 |
+
"ppl": 7.049514,
|
| 982 |
+
"pplDeltaPercent": 23.958396342535607,
|
| 983 |
+
"sizeBytes": 9587160480,
|
| 984 |
+
"sizeGB": 9.58716048,
|
| 985 |
+
"sizeGiB": 8.928738981485367,
|
| 986 |
+
"expectedSizeBytes": 9587160480,
|
| 987 |
+
"actualSizeBytes": 9587160480,
|
| 988 |
+
"usedImatrix": true,
|
| 989 |
+
"replacedArtifacts": [
|
| 990 |
+
{
|
| 991 |
+
"key": "12:0:0:0:0:0:0:0:0:0",
|
| 992 |
+
"shortName": "LM-IQ2_XXS",
|
| 993 |
+
"internalDisplayName": "Qwen3.6-35B-A3B-Qwen-IQ2_XXS",
|
| 994 |
+
"kld": 0.344116,
|
| 995 |
+
"ppl": 7.511203,
|
| 996 |
+
"pplDeltaPercent": 32.076718832424824,
|
| 997 |
+
"sizeBytes": 9497653664,
|
| 998 |
+
"sizeGB": 9.497653664000001,
|
| 999 |
+
"sizeGiB": 8.845379263162613,
|
| 1000 |
+
"reasonCode": "NEAR_BASELINE_PREMIUM",
|
| 1001 |
+
"reason": "smart baseline-tuning near-baseline fallback within \u002B1% size premium"
|
| 1002 |
+
}
|
| 1003 |
+
]
|
| 1004 |
+
}
|
| 1005 |
+
]
|
|
@@ -0,0 +1,233 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"ExportedFileName": "Qwen3.6-35B-A3B-MQ-Q6_K_1.gguf",
|
| 4 |
+
"DisplayName": "MQ-Q6_K_1",
|
| 5 |
+
"ProviderSource": "MagicQuant",
|
| 6 |
+
"BaselineFamily": "Q6_K",
|
| 7 |
+
"OriginalReferenceBaseline": "UD-Q6_K_XL",
|
| 8 |
+
"TensorGroups": {
|
| 9 |
+
"embeddings": "UD-IQ3_S",
|
| 10 |
+
"lm_head": "UD-Q6_K_XL",
|
| 11 |
+
"attn_q": "UD-Q6_K_XL",
|
| 12 |
+
"attn_kv": "UD-Q6_K_XL",
|
| 13 |
+
"attn_output": "UD-Q6_K_XL",
|
| 14 |
+
"ffn_up_gate": "UD-Q6_K",
|
| 15 |
+
"ffn_down": "UD-Q6_K_XL",
|
| 16 |
+
"moe_router": "UD-Q6_K_XL"
|
| 17 |
+
},
|
| 18 |
+
"EffectiveQuantStateKey": "base=custom:qwen3.6-35b-a3b:unsloth/qwen3.6-35b-a3b-gguf:qwen3.6-35b-a3b-ud-q6_k_xl.gguf:b041e242772891d41b594cb9724683919cdf974b8b2010b4bf79a5238b1fdd04|attn_kv=effective:Q8_0|attn_output=effective:Q8_0|attn_q=effective:Q8_0|embeddings=effective:Q6_K|ffn_down=effective:Q8_0|ffn_up_gate=effective-map:af6e51040258602dfa593fefeb366ce9b5f1b0edbcfe99cdad2ca43c1b6759f1|lm_head=effective:Q8_0|moe_experts=base|moe_router=effective:F32",
|
| 19 |
+
"HasUnknownMappings": false,
|
| 20 |
+
"Warnings": [],
|
| 21 |
+
"UsedImatrix": true,
|
| 22 |
+
"ExpectedSizeBytes": 31590586784,
|
| 23 |
+
"ExpectedSizeGB": 31.590586784000003,
|
| 24 |
+
"ExpectedSizeGiB": 29.42102661728859,
|
| 25 |
+
"ActualSizeBytes": 31590586784,
|
| 26 |
+
"ActualSizeGB": 31.590586784000003,
|
| 27 |
+
"ActualSizeGiB": 29.42102661728859,
|
| 28 |
+
"OriginalExternalSource": "https://huggingface.co/unsloth/Qwen3.6-35B-A3B-GGUF"
|
| 29 |
+
},
|
| 30 |
+
{
|
| 31 |
+
"ExportedFileName": "Qwen3.6-35B-A3B-MQ-Q5_K_1.gguf",
|
| 32 |
+
"DisplayName": "MQ-Q5_K_1",
|
| 33 |
+
"ProviderSource": "MagicQuant",
|
| 34 |
+
"BaselineFamily": "Q5_K",
|
| 35 |
+
"OriginalReferenceBaseline": "UD-Q6_K",
|
| 36 |
+
"TensorGroups": {
|
| 37 |
+
"embeddings": "UD-IQ3_S",
|
| 38 |
+
"lm_head": "UD-Q6_K",
|
| 39 |
+
"attn_q": "UD-Q6_K",
|
| 40 |
+
"attn_kv": "UD-Q6_K",
|
| 41 |
+
"attn_output": "UD-Q6_K",
|
| 42 |
+
"ffn_up_gate": "UD-Q6_K",
|
| 43 |
+
"ffn_down": "UD-Q6_K",
|
| 44 |
+
"moe_router": "UD-Q6_K"
|
| 45 |
+
},
|
| 46 |
+
"EffectiveQuantStateKey": "base=custom:qwen3.6-35b-a3b:unsloth/qwen3.6-35b-a3b-gguf:qwen3.6-35b-a3b-ud-q6_k.gguf:7adf378c71d7be60c44a376063ff6ce961b4e966eca875a8f8d7896caac600ce|attn_kv=effective:Q8_0|attn_output=effective:Q8_0|attn_q=effective:Q8_0|embeddings=effective:Q6_K|ffn_down=effective-map:68239e697ee2ca5a8dfe9d570fa12cd91079a3bc288d409a7f8723878e335025|ffn_up_gate=effective-map:af6e51040258602dfa593fefeb366ce9b5f1b0edbcfe99cdad2ca43c1b6759f1|lm_head=effective:Q8_0|moe_experts=base|moe_router=effective:F32",
|
| 47 |
+
"HasUnknownMappings": false,
|
| 48 |
+
"Warnings": [],
|
| 49 |
+
"UsedImatrix": true,
|
| 50 |
+
"ExpectedSizeBytes": 29185153440,
|
| 51 |
+
"ExpectedSizeGB": 29.18515344,
|
| 52 |
+
"ExpectedSizeGiB": 27.18079224228859,
|
| 53 |
+
"ActualSizeBytes": 29185153440,
|
| 54 |
+
"ActualSizeGB": 29.18515344,
|
| 55 |
+
"ActualSizeGiB": 27.18079224228859,
|
| 56 |
+
"OriginalExternalSource": "https://huggingface.co/unsloth/Qwen3.6-35B-A3B-GGUF"
|
| 57 |
+
},
|
| 58 |
+
{
|
| 59 |
+
"ExportedFileName": "Qwen3.6-35B-A3B-MQ-Q5_K_S_1.gguf",
|
| 60 |
+
"DisplayName": "MQ-Q5_K_S_1",
|
| 61 |
+
"ProviderSource": "MagicQuant",
|
| 62 |
+
"BaselineFamily": "Q5_K_S",
|
| 63 |
+
"OriginalReferenceBaseline": "UD-Q5_K_M",
|
| 64 |
+
"TensorGroups": {
|
| 65 |
+
"embeddings": "UD-IQ3_S",
|
| 66 |
+
"lm_head": "UD-Q5_K_M",
|
| 67 |
+
"attn_q": "UD-Q5_K_M",
|
| 68 |
+
"attn_kv": "UD-Q5_K_M",
|
| 69 |
+
"attn_output": "UD-Q5_K_M",
|
| 70 |
+
"ffn_up_gate": "UD-Q5_K_M",
|
| 71 |
+
"ffn_down": "UD-Q5_K_M",
|
| 72 |
+
"moe_router": "UD-Q5_K_M"
|
| 73 |
+
},
|
| 74 |
+
"EffectiveQuantStateKey": "base=custom:qwen3.6-35b-a3b:unsloth/qwen3.6-35b-a3b-gguf:qwen3.6-35b-a3b-ud-q5_k_m.gguf:465a2d2917fe671799c9ead0e7ab06b23768f32c682859e947b106300e500f8d|attn_kv=effective:Q8_0|attn_output=effective:Q8_0|attn_q=effective:Q8_0|embeddings=effective:Q6_K|ffn_down=effective-map:68239e697ee2ca5a8dfe9d570fa12cd91079a3bc288d409a7f8723878e335025|ffn_up_gate=effective-map:230969bb48ee61b64b1d18f3f2fb3eca7944c4a953d68b63c0b2c744c1a0a481|lm_head=effective:Q8_0|moe_experts=base|moe_router=effective:F32",
|
| 75 |
+
"HasUnknownMappings": false,
|
| 76 |
+
"Warnings": [],
|
| 77 |
+
"UsedImatrix": true,
|
| 78 |
+
"ExpectedSizeBytes": 26333026720,
|
| 79 |
+
"ExpectedSizeGB": 26.33302672,
|
| 80 |
+
"ExpectedSizeGiB": 24.52454224228859,
|
| 81 |
+
"ActualSizeBytes": 26333026720,
|
| 82 |
+
"ActualSizeGB": 26.33302672,
|
| 83 |
+
"ActualSizeGiB": 24.52454224228859,
|
| 84 |
+
"OriginalExternalSource": "https://huggingface.co/unsloth/Qwen3.6-35B-A3B-GGUF"
|
| 85 |
+
},
|
| 86 |
+
{
|
| 87 |
+
"ExportedFileName": "Qwen3.6-35B-A3B-MQ-Q4_K_M_1.gguf",
|
| 88 |
+
"DisplayName": "MQ-Q4_K_M_1",
|
| 89 |
+
"ProviderSource": "MagicQuant",
|
| 90 |
+
"BaselineFamily": "Q4_K_M",
|
| 91 |
+
"OriginalReferenceBaseline": "UD-Q5_K_S",
|
| 92 |
+
"TensorGroups": {
|
| 93 |
+
"embeddings": "UD-IQ3_S",
|
| 94 |
+
"lm_head": "UD-Q5_K_S",
|
| 95 |
+
"attn_q": "UD-Q5_K_S",
|
| 96 |
+
"attn_kv": "UD-Q5_K_S",
|
| 97 |
+
"attn_output": "UD-Q5_K_S",
|
| 98 |
+
"ffn_up_gate": "UD-Q5_K_S",
|
| 99 |
+
"ffn_down": "UD-Q5_K_S",
|
| 100 |
+
"moe_router": "UD-Q5_K_S"
|
| 101 |
+
},
|
| 102 |
+
"EffectiveQuantStateKey": "base=custom:qwen3.6-35b-a3b:unsloth/qwen3.6-35b-a3b-gguf:qwen3.6-35b-a3b-ud-q5_k_s.gguf:07a0ba8ae4dd65ade37ef5b2ff7e86652d26f034d9081bcc926c74bbf8f9b24b|attn_kv=effective:Q8_0|attn_output=effective:Q8_0|attn_q=effective:Q8_0|embeddings=effective:Q6_K|ffn_down=effective-map:5e8f26dfe41695efd6a77ad726b5a479337cb7d3a6f39d2d2476df32f5be88b9|ffn_up_gate=effective-map:230969bb48ee61b64b1d18f3f2fb3eca7944c4a953d68b63c0b2c744c1a0a481|lm_head=effective:Q8_0|moe_experts=base|moe_router=effective:F32",
|
| 103 |
+
"HasUnknownMappings": false,
|
| 104 |
+
"Warnings": [],
|
| 105 |
+
"UsedImatrix": true,
|
| 106 |
+
"ExpectedSizeBytes": 24818882976,
|
| 107 |
+
"ExpectedSizeGB": 24.818882976,
|
| 108 |
+
"ExpectedSizeGiB": 23.11438599228859,
|
| 109 |
+
"ActualSizeBytes": 24818882976,
|
| 110 |
+
"ActualSizeGB": 24.818882976,
|
| 111 |
+
"ActualSizeGiB": 23.11438599228859,
|
| 112 |
+
"OriginalExternalSource": "https://huggingface.co/unsloth/Qwen3.6-35B-A3B-GGUF"
|
| 113 |
+
},
|
| 114 |
+
{
|
| 115 |
+
"ExportedFileName": "Qwen3.6-35B-A3B-MQ-Q4_K_M_2.gguf",
|
| 116 |
+
"DisplayName": "MQ-Q4_K_M_2",
|
| 117 |
+
"ProviderSource": "MagicQuant",
|
| 118 |
+
"BaselineFamily": "Q4_K_M",
|
| 119 |
+
"OriginalReferenceBaseline": "UD-Q4_K_XL",
|
| 120 |
+
"TensorGroups": {
|
| 121 |
+
"embeddings": "UD-Q4_K_XL",
|
| 122 |
+
"lm_head": "UD-Q4_K_XL",
|
| 123 |
+
"attn_q": "UD-Q4_K_XL",
|
| 124 |
+
"attn_kv": "UD-Q4_K_XL",
|
| 125 |
+
"attn_output": "UD-Q4_K_XL",
|
| 126 |
+
"ffn_up_gate": "UD-Q4_K_XL",
|
| 127 |
+
"ffn_down": "UD-Q5_K_S",
|
| 128 |
+
"moe_router": "UD-Q4_K_XL"
|
| 129 |
+
},
|
| 130 |
+
"EffectiveQuantStateKey": "base=custom:qwen3.6-35b-a3b:unsloth/qwen3.6-35b-a3b-gguf:qwen3.6-35b-a3b-ud-q4_k_xl.gguf:e1a179d59214c99477ac7d4265a15deed24fe73b178c4ff727005b778fe232e4|attn_kv=effective:Q8_0|attn_output=effective:Q8_0|attn_q=effective:Q8_0|embeddings=effective:Q8_0|ffn_down=effective-map:5e8f26dfe41695efd6a77ad726b5a479337cb7d3a6f39d2d2476df32f5be88b9|ffn_up_gate=effective-map:deac2607058b03ef652577bfdddc30fd9ac8d5bd8bb8b34cd6da95773b5ba7a5|lm_head=effective:Q8_0|moe_experts=base|moe_router=effective:F32",
|
| 131 |
+
"HasUnknownMappings": false,
|
| 132 |
+
"Warnings": [],
|
| 133 |
+
"UsedImatrix": true,
|
| 134 |
+
"ExpectedSizeBytes": 22324804000,
|
| 135 |
+
"ExpectedSizeGB": 22.324804,
|
| 136 |
+
"ExpectedSizeGiB": 20.791593939065933,
|
| 137 |
+
"ActualSizeBytes": 22324804000,
|
| 138 |
+
"ActualSizeGB": 22.324804,
|
| 139 |
+
"ActualSizeGiB": 20.791593939065933,
|
| 140 |
+
"OriginalExternalSource": "https://huggingface.co/unsloth/Qwen3.6-35B-A3B-GGUF"
|
| 141 |
+
},
|
| 142 |
+
{
|
| 143 |
+
"ExportedFileName": "Qwen3.6-35B-A3B-MQ-IQ4_NL_1.gguf",
|
| 144 |
+
"DisplayName": "MQ-IQ4_NL_1",
|
| 145 |
+
"ProviderSource": "MagicQuant",
|
| 146 |
+
"BaselineFamily": "IQ4_NL",
|
| 147 |
+
"OriginalReferenceBaseline": "Q8_0",
|
| 148 |
+
"TensorGroups": {
|
| 149 |
+
"embeddings": "UD-IQ3_S",
|
| 150 |
+
"lm_head": "Q8_0",
|
| 151 |
+
"attn_q": "Q8_0",
|
| 152 |
+
"attn_kv": "Q8_0",
|
| 153 |
+
"attn_output": "Q8_0",
|
| 154 |
+
"ffn_up_gate": "UD-Q4_K_M",
|
| 155 |
+
"ffn_down": "UD-Q4_K_S",
|
| 156 |
+
"moe_router": "Q8_0"
|
| 157 |
+
},
|
| 158 |
+
"EffectiveQuantStateKey": "base=standard:q8_0|attn_kv=effective:Q8_0|attn_output=effective:Q8_0|attn_q=effective:Q8_0|embeddings=effective:Q6_K|ffn_down=effective-map:b3e2bfc3f1412c7ffc0296b9931b0a0c354aaf70689fa534425d56cb75f33b36|ffn_up_gate=effective-map:7c60db1e6e409a2059d9b90c6a48e1d79eea0e3bbf90511308c545ded48a353f|lm_head=effective:Q8_0|moe_experts=base|moe_router=effective:F32",
|
| 159 |
+
"HasUnknownMappings": false,
|
| 160 |
+
"Warnings": [],
|
| 161 |
+
"UsedImatrix": true,
|
| 162 |
+
"ExpectedSizeBytes": 20887239072,
|
| 163 |
+
"ExpectedSizeGB": 20.887239072,
|
| 164 |
+
"ExpectedSizeGiB": 19.45275726914406,
|
| 165 |
+
"ActualSizeBytes": 20887239072,
|
| 166 |
+
"ActualSizeGB": 20.887239072,
|
| 167 |
+
"ActualSizeGiB": 19.45275726914406,
|
| 168 |
+
"OriginalExternalSource": null
|
| 169 |
+
},
|
| 170 |
+
{
|
| 171 |
+
"ExportedFileName": "Qwen3.6-35B-A3B-MQ-IQ3_M_1.gguf",
|
| 172 |
+
"DisplayName": "MQ-IQ3_M_1",
|
| 173 |
+
"ProviderSource": "MagicQuant",
|
| 174 |
+
"BaselineFamily": "IQ3_M",
|
| 175 |
+
"OriginalReferenceBaseline": "Q8_0",
|
| 176 |
+
"TensorGroups": {
|
| 177 |
+
"embeddings": "UD-IQ3_S",
|
| 178 |
+
"lm_head": "Q8_0",
|
| 179 |
+
"attn_q": "Q6_K",
|
| 180 |
+
"attn_kv": "Q8_0",
|
| 181 |
+
"attn_output": "Q8_0",
|
| 182 |
+
"ffn_up_gate": "UD-IQ4_NL",
|
| 183 |
+
"ffn_down": "UD-Q3_K_XL",
|
| 184 |
+
"moe_router": "Q8_0"
|
| 185 |
+
},
|
| 186 |
+
"EffectiveQuantStateKey": "base=standard:q8_0|attn_kv=effective:Q8_0|attn_output=effective:Q8_0|attn_q=effective:Q6_K|embeddings=effective:Q6_K|ffn_down=effective-map:ade0d03103360f74cdf5956adcc1fa96c915bf50479179056b6a58a7906dd7bb|ffn_up_gate=effective-map:81e7942b1c609d4bad690a89b8fb60638224e86c8585a01a14af7695a9ec13c7|lm_head=effective:Q8_0|moe_experts=base|moe_router=effective:F32",
|
| 187 |
+
"HasUnknownMappings": false,
|
| 188 |
+
"Warnings": [],
|
| 189 |
+
"UsedImatrix": true,
|
| 190 |
+
"ExpectedSizeBytes": 17604147616,
|
| 191 |
+
"ExpectedSizeGB": 17.604147616000002,
|
| 192 |
+
"ExpectedSizeGiB": 16.39514008164406,
|
| 193 |
+
"ActualSizeBytes": 17604147616,
|
| 194 |
+
"ActualSizeGB": 17.604147616000002,
|
| 195 |
+
"ActualSizeGiB": 16.39514008164406,
|
| 196 |
+
"OriginalExternalSource": null
|
| 197 |
+
},
|
| 198 |
+
{
|
| 199 |
+
"ExportedFileName": "Qwen3.6-35B-A3B-MQ-IQ2_XXS_1.gguf",
|
| 200 |
+
"DisplayName": "MQ-IQ2_XXS_1",
|
| 201 |
+
"ProviderSource": "MagicQuant",
|
| 202 |
+
"BaselineFamily": "IQ2_XXS",
|
| 203 |
+
"OriginalReferenceBaseline": "IQ2_XXS",
|
| 204 |
+
"TensorGroups": {
|
| 205 |
+
"embeddings": "IQ2_XXS",
|
| 206 |
+
"lm_head": "IQ2_XXS",
|
| 207 |
+
"attn_q": "Q4_K_S",
|
| 208 |
+
"attn_kv": "IQ3_M",
|
| 209 |
+
"attn_output": "IQ4_XS",
|
| 210 |
+
"ffn_up_gate": "IQ2_XXS",
|
| 211 |
+
"ffn_down": "IQ2_XXS",
|
| 212 |
+
"moe_router": "IQ2_XXS"
|
| 213 |
+
},
|
| 214 |
+
"EffectiveQuantStateKey": "base=standard:iq2_xxs|attn_kv=effective-map:5cc7922095c0ed00051c707e5533ff80b0c30b8deb3c73d4eee7de61e160bf47|attn_output=effective:IQ4_XS|attn_q=effective-map:62037c61de1bdfda08e0e5d614d15c085fabca66e486e7c8856b3a60e0f5da3f|embeddings=effective:unknown:Q2_K|ffn_down=effective-map:c67598817899c15d34c24fe469564c6f419642ee9424ac707ac7d007d7e4c4b3|ffn_up_gate=effective:IQ2_XXS|lm_head=effective:Q5_K|moe_experts=base|moe_router=effective:F32",
|
| 215 |
+
"HasUnknownMappings": true,
|
| 216 |
+
"Warnings": [
|
| 217 |
+
"Unknown or partially unmapped learned tensor state \u0027Q2_K\u0027 was preserved as raw metadata.",
|
| 218 |
+
"Unknown or partially unmapped learned tensor state \u0027Q2_K\u0027 was preserved as raw metadata.",
|
| 219 |
+
"Unknown or partially unmapped learned tensor state \u0027Q2_K\u0027 was preserved as raw metadata.",
|
| 220 |
+
"Unknown or partially unmapped learned tensor state \u0027Q2_K\u0027 was preserved as raw metadata.",
|
| 221 |
+
"Unknown or partially unmapped learned tensor state \u0027Q2_K\u0027 was preserved as raw metadata.",
|
| 222 |
+
"Unknown or partially unmapped learned tensor state \u0027Q2_K\u0027 was preserved as raw metadata."
|
| 223 |
+
],
|
| 224 |
+
"UsedImatrix": true,
|
| 225 |
+
"ExpectedSizeBytes": 9587160480,
|
| 226 |
+
"ExpectedSizeGB": 9.58716048,
|
| 227 |
+
"ExpectedSizeGiB": 8.928738981485367,
|
| 228 |
+
"ActualSizeBytes": 9587160480,
|
| 229 |
+
"ActualSizeGB": 9.58716048,
|
| 230 |
+
"ActualSizeGiB": 8.928738981485367,
|
| 231 |
+
"OriginalExternalSource": null
|
| 232 |
+
}
|
| 233 |
+
]
|
|
The diff for this file is too large to render.
See raw diff
|
|
|
|
The diff for this file is too large to render.
See raw diff
|
|
|
|
The diff for this file is too large to render.
See raw diff
|
|
|
|
Binary file (1.76 kB). View file
|
|
|
|
The diff for this file is too large to render.
See raw diff
|
|
|
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5f9e4d4901a92b997e463c1f46055088b6cca5ca61a6522d1b9f64c4bb81cb42
|
| 3 |
+
size 12807982
|
|
@@ -0,0 +1,305 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"added_tokens_decoder": {
|
| 4 |
+
"248044": {
|
| 5 |
+
"content": "<|endoftext|>",
|
| 6 |
+
"lstrip": false,
|
| 7 |
+
"normalized": false,
|
| 8 |
+
"rstrip": false,
|
| 9 |
+
"single_word": false,
|
| 10 |
+
"special": true
|
| 11 |
+
},
|
| 12 |
+
"248045": {
|
| 13 |
+
"content": "<|im_start|>",
|
| 14 |
+
"lstrip": false,
|
| 15 |
+
"normalized": false,
|
| 16 |
+
"rstrip": false,
|
| 17 |
+
"single_word": false,
|
| 18 |
+
"special": true
|
| 19 |
+
},
|
| 20 |
+
"248046": {
|
| 21 |
+
"content": "<|im_end|>",
|
| 22 |
+
"lstrip": false,
|
| 23 |
+
"normalized": false,
|
| 24 |
+
"rstrip": false,
|
| 25 |
+
"single_word": false,
|
| 26 |
+
"special": true
|
| 27 |
+
},
|
| 28 |
+
"248047": {
|
| 29 |
+
"content": "<|object_ref_start|>",
|
| 30 |
+
"lstrip": false,
|
| 31 |
+
"normalized": false,
|
| 32 |
+
"rstrip": false,
|
| 33 |
+
"single_word": false,
|
| 34 |
+
"special": true
|
| 35 |
+
},
|
| 36 |
+
"248048": {
|
| 37 |
+
"content": "<|object_ref_end|>",
|
| 38 |
+
"lstrip": false,
|
| 39 |
+
"normalized": false,
|
| 40 |
+
"rstrip": false,
|
| 41 |
+
"single_word": false,
|
| 42 |
+
"special": true
|
| 43 |
+
},
|
| 44 |
+
"248049": {
|
| 45 |
+
"content": "<|box_start|>",
|
| 46 |
+
"lstrip": false,
|
| 47 |
+
"normalized": false,
|
| 48 |
+
"rstrip": false,
|
| 49 |
+
"single_word": false,
|
| 50 |
+
"special": true
|
| 51 |
+
},
|
| 52 |
+
"248050": {
|
| 53 |
+
"content": "<|box_end|>",
|
| 54 |
+
"lstrip": false,
|
| 55 |
+
"normalized": false,
|
| 56 |
+
"rstrip": false,
|
| 57 |
+
"single_word": false,
|
| 58 |
+
"special": true
|
| 59 |
+
},
|
| 60 |
+
"248051": {
|
| 61 |
+
"content": "<|quad_start|>",
|
| 62 |
+
"lstrip": false,
|
| 63 |
+
"normalized": false,
|
| 64 |
+
"rstrip": false,
|
| 65 |
+
"single_word": false,
|
| 66 |
+
"special": true
|
| 67 |
+
},
|
| 68 |
+
"248052": {
|
| 69 |
+
"content": "<|quad_end|>",
|
| 70 |
+
"lstrip": false,
|
| 71 |
+
"normalized": false,
|
| 72 |
+
"rstrip": false,
|
| 73 |
+
"single_word": false,
|
| 74 |
+
"special": true
|
| 75 |
+
},
|
| 76 |
+
"248053": {
|
| 77 |
+
"content": "<|vision_start|>",
|
| 78 |
+
"lstrip": false,
|
| 79 |
+
"normalized": false,
|
| 80 |
+
"rstrip": false,
|
| 81 |
+
"single_word": false,
|
| 82 |
+
"special": true
|
| 83 |
+
},
|
| 84 |
+
"248054": {
|
| 85 |
+
"content": "<|vision_end|>",
|
| 86 |
+
"lstrip": false,
|
| 87 |
+
"normalized": false,
|
| 88 |
+
"rstrip": false,
|
| 89 |
+
"single_word": false,
|
| 90 |
+
"special": true
|
| 91 |
+
},
|
| 92 |
+
"248055": {
|
| 93 |
+
"content": "<|vision_pad|>",
|
| 94 |
+
"lstrip": false,
|
| 95 |
+
"normalized": false,
|
| 96 |
+
"rstrip": false,
|
| 97 |
+
"single_word": false,
|
| 98 |
+
"special": true
|
| 99 |
+
},
|
| 100 |
+
"248056": {
|
| 101 |
+
"content": "<|image_pad|>",
|
| 102 |
+
"lstrip": false,
|
| 103 |
+
"normalized": false,
|
| 104 |
+
"rstrip": false,
|
| 105 |
+
"single_word": false,
|
| 106 |
+
"special": true
|
| 107 |
+
},
|
| 108 |
+
"248057": {
|
| 109 |
+
"content": "<|video_pad|>",
|
| 110 |
+
"lstrip": false,
|
| 111 |
+
"normalized": false,
|
| 112 |
+
"rstrip": false,
|
| 113 |
+
"single_word": false,
|
| 114 |
+
"special": true
|
| 115 |
+
},
|
| 116 |
+
"248058": {
|
| 117 |
+
"content": "<tool_call>",
|
| 118 |
+
"lstrip": false,
|
| 119 |
+
"normalized": false,
|
| 120 |
+
"rstrip": false,
|
| 121 |
+
"single_word": false,
|
| 122 |
+
"special": false
|
| 123 |
+
},
|
| 124 |
+
"248059": {
|
| 125 |
+
"content": "</tool_call>",
|
| 126 |
+
"lstrip": false,
|
| 127 |
+
"normalized": false,
|
| 128 |
+
"rstrip": false,
|
| 129 |
+
"single_word": false,
|
| 130 |
+
"special": false
|
| 131 |
+
},
|
| 132 |
+
"248060": {
|
| 133 |
+
"content": "<|fim_prefix|>",
|
| 134 |
+
"lstrip": false,
|
| 135 |
+
"normalized": false,
|
| 136 |
+
"rstrip": false,
|
| 137 |
+
"single_word": false,
|
| 138 |
+
"special": false
|
| 139 |
+
},
|
| 140 |
+
"248061": {
|
| 141 |
+
"content": "<|fim_middle|>",
|
| 142 |
+
"lstrip": false,
|
| 143 |
+
"normalized": false,
|
| 144 |
+
"rstrip": false,
|
| 145 |
+
"single_word": false,
|
| 146 |
+
"special": false
|
| 147 |
+
},
|
| 148 |
+
"248062": {
|
| 149 |
+
"content": "<|fim_suffix|>",
|
| 150 |
+
"lstrip": false,
|
| 151 |
+
"normalized": false,
|
| 152 |
+
"rstrip": false,
|
| 153 |
+
"single_word": false,
|
| 154 |
+
"special": false
|
| 155 |
+
},
|
| 156 |
+
"248063": {
|
| 157 |
+
"content": "<|fim_pad|>",
|
| 158 |
+
"lstrip": false,
|
| 159 |
+
"normalized": false,
|
| 160 |
+
"rstrip": false,
|
| 161 |
+
"single_word": false,
|
| 162 |
+
"special": false
|
| 163 |
+
},
|
| 164 |
+
"248064": {
|
| 165 |
+
"content": "<|repo_name|>",
|
| 166 |
+
"lstrip": false,
|
| 167 |
+
"normalized": false,
|
| 168 |
+
"rstrip": false,
|
| 169 |
+
"single_word": false,
|
| 170 |
+
"special": false
|
| 171 |
+
},
|
| 172 |
+
"248065": {
|
| 173 |
+
"content": "<|file_sep|>",
|
| 174 |
+
"lstrip": false,
|
| 175 |
+
"normalized": false,
|
| 176 |
+
"rstrip": false,
|
| 177 |
+
"single_word": false,
|
| 178 |
+
"special": false
|
| 179 |
+
},
|
| 180 |
+
"248066": {
|
| 181 |
+
"content": "<tool_response>",
|
| 182 |
+
"lstrip": false,
|
| 183 |
+
"normalized": false,
|
| 184 |
+
"rstrip": false,
|
| 185 |
+
"single_word": false,
|
| 186 |
+
"special": false
|
| 187 |
+
},
|
| 188 |
+
"248067": {
|
| 189 |
+
"content": "</tool_response>",
|
| 190 |
+
"lstrip": false,
|
| 191 |
+
"normalized": false,
|
| 192 |
+
"rstrip": false,
|
| 193 |
+
"single_word": false,
|
| 194 |
+
"special": false
|
| 195 |
+
},
|
| 196 |
+
"248068": {
|
| 197 |
+
"content": "<think>",
|
| 198 |
+
"lstrip": false,
|
| 199 |
+
"normalized": false,
|
| 200 |
+
"rstrip": false,
|
| 201 |
+
"single_word": false,
|
| 202 |
+
"special": false
|
| 203 |
+
},
|
| 204 |
+
"248069": {
|
| 205 |
+
"content": "</think>",
|
| 206 |
+
"lstrip": false,
|
| 207 |
+
"normalized": false,
|
| 208 |
+
"rstrip": false,
|
| 209 |
+
"single_word": false,
|
| 210 |
+
"special": false
|
| 211 |
+
},
|
| 212 |
+
"248070": {
|
| 213 |
+
"content": "<|audio_start|>",
|
| 214 |
+
"lstrip": false,
|
| 215 |
+
"normalized": false,
|
| 216 |
+
"rstrip": false,
|
| 217 |
+
"single_word": false,
|
| 218 |
+
"special": true
|
| 219 |
+
},
|
| 220 |
+
"248071": {
|
| 221 |
+
"content": "<|audio_end|>",
|
| 222 |
+
"lstrip": false,
|
| 223 |
+
"normalized": false,
|
| 224 |
+
"rstrip": false,
|
| 225 |
+
"single_word": false,
|
| 226 |
+
"special": true
|
| 227 |
+
},
|
| 228 |
+
"248072": {
|
| 229 |
+
"content": "<tts_pad>",
|
| 230 |
+
"lstrip": false,
|
| 231 |
+
"normalized": false,
|
| 232 |
+
"rstrip": false,
|
| 233 |
+
"single_word": false,
|
| 234 |
+
"special": true
|
| 235 |
+
},
|
| 236 |
+
"248073": {
|
| 237 |
+
"content": "<tts_text_bos>",
|
| 238 |
+
"lstrip": false,
|
| 239 |
+
"normalized": false,
|
| 240 |
+
"rstrip": false,
|
| 241 |
+
"single_word": false,
|
| 242 |
+
"special": true
|
| 243 |
+
},
|
| 244 |
+
"248074": {
|
| 245 |
+
"content": "<tts_text_eod>",
|
| 246 |
+
"lstrip": false,
|
| 247 |
+
"normalized": false,
|
| 248 |
+
"rstrip": false,
|
| 249 |
+
"single_word": false,
|
| 250 |
+
"special": true
|
| 251 |
+
},
|
| 252 |
+
"248075": {
|
| 253 |
+
"content": "<tts_text_bos_single>",
|
| 254 |
+
"lstrip": false,
|
| 255 |
+
"normalized": false,
|
| 256 |
+
"rstrip": false,
|
| 257 |
+
"single_word": false,
|
| 258 |
+
"special": true
|
| 259 |
+
},
|
| 260 |
+
"248076": {
|
| 261 |
+
"content": "<|audio_pad|>",
|
| 262 |
+
"lstrip": false,
|
| 263 |
+
"normalized": false,
|
| 264 |
+
"rstrip": false,
|
| 265 |
+
"single_word": false,
|
| 266 |
+
"special": true
|
| 267 |
+
}
|
| 268 |
+
},
|
| 269 |
+
"additional_special_tokens": [
|
| 270 |
+
"<|im_start|>",
|
| 271 |
+
"<|im_end|>",
|
| 272 |
+
"<|object_ref_start|>",
|
| 273 |
+
"<|object_ref_end|>",
|
| 274 |
+
"<|box_start|>",
|
| 275 |
+
"<|box_end|>",
|
| 276 |
+
"<|quad_start|>",
|
| 277 |
+
"<|quad_end|>",
|
| 278 |
+
"<|vision_start|>",
|
| 279 |
+
"<|vision_end|>",
|
| 280 |
+
"<|vision_pad|>",
|
| 281 |
+
"<|image_pad|>",
|
| 282 |
+
"<|video_pad|>"
|
| 283 |
+
],
|
| 284 |
+
"bos_token": null,
|
| 285 |
+
"chat_template": "{%- set image_count = namespace(value=0) %}\n{%- set video_count = namespace(value=0) %}\n{%- macro render_content(content, do_vision_count, is_system_content=false) %}\n {%- if content is string %}\n {{- content }}\n {%- elif content is iterable and content is not mapping %}\n {%- for item in content %}\n {%- if 'image' in item or 'image_url' in item or item.type == 'image' %}\n {%- if is_system_content %}\n {{- raise_exception('System message cannot contain images.') }}\n {%- endif %}\n {%- if do_vision_count %}\n {%- set image_count.value = image_count.value + 1 %}\n {%- endif %}\n {%- if add_vision_id %}\n {{- 'Picture ' ~ image_count.value ~ ': ' }}\n {%- endif %}\n {{- '<|vision_start|><|image_pad|><|vision_end|>' }}\n {%- elif 'video' in item or item.type == 'video' %}\n {%- if is_system_content %}\n {{- raise_exception('System message cannot contain videos.') }}\n {%- endif %}\n {%- if do_vision_count %}\n {%- set video_count.value = video_count.value + 1 %}\n {%- endif %}\n {%- if add_vision_id %}\n {{- 'Video ' ~ video_count.value ~ ': ' }}\n {%- endif %}\n {{- '<|vision_start|><|video_pad|><|vision_end|>' }}\n {%- elif 'text' in item %}\n {{- item.text }}\n {%- else %}\n {{- raise_exception('Unexpected item type in content.') }}\n {%- endif %}\n {%- endfor %}\n {%- elif content is none or content is undefined %}\n {{- '' }}\n {%- else %}\n {{- raise_exception('Unexpected content type.') }}\n {%- endif %}\n{%- endmacro %}\n{%- if not messages %}\n {{- raise_exception('No messages provided.') }}\n{%- endif %}\n{%- if tools and tools is iterable and tools is not mapping %}\n {{- '<|im_start|>system\\n' }}\n {{- \"# Tools\\n\\nYou have access to the following functions:\\n\\n<tools>\" }}\n {%- for tool in tools %}\n {{- \"\\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\\n</tools>\" }}\n {{- '\\n\\nIf you choose to call a function ONLY reply in the following format with NO suffix:\\n\\n<tool_call>\\n<function=example_function_name>\\n<parameter=example_parameter_1>\\nvalue_1\\n</parameter>\\n<parameter=example_parameter_2>\\nThis is the value for the second parameter\\nthat can span\\nmultiple lines\\n</parameter>\\n</function>\\n</tool_call>\\n\\n<IMPORTANT>\\nReminder:\\n- Function calls MUST follow the specified format: an inner <function=...></function> block must be nested within <tool_call></tool_call> XML tags\\n- Required parameters MUST be specified\\n- You may provide optional reasoning for your function call in natural language BEFORE the function call, but NOT after\\n- If there is no function call available, answer the question like normal with your current knowledge and do not tell the user about function calls\\n</IMPORTANT>' }}\n {%- if messages[0].role == 'system' %}\n {%- set content = render_content(messages[0].content, false, true)|trim %}\n {%- if content %}\n {{- '\\n\\n' + content }}\n {%- endif %}\n {%- endif %}\n {{- '<|im_end|>\\n' }}\n{%- else %}\n {%- if messages[0].role == 'system' %}\n {%- set content = render_content(messages[0].content, false, true)|trim %}\n {{- '<|im_start|>system\\n' + content + '<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}\n{%- for message in messages[::-1] %}\n {%- set index = (messages|length - 1) - loop.index0 %}\n {%- if ns.multi_step_tool and message.role == \"user\" %}\n {%- set content = render_content(message.content, false)|trim %}\n {%- if not(content.startswith('<tool_response>') and content.endswith('</tool_response>')) %}\n {%- set ns.multi_step_tool = false %}\n {%- set ns.last_query_index = index %}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if ns.multi_step_tool %}\n {{- raise_exception('No user query found in messages.') }}\n{%- endif %}\n{%- for message in messages %}\n {%- set content = render_content(message.content, true)|trim %}\n {%- if message.role == \"system\" %}\n {%- if not loop.first %}\n {{- raise_exception('System message must be at the beginning.') }}\n {%- endif %}\n {%- elif message.role == \"user\" %}\n {{- '<|im_start|>' + message.role + '\\n' + content + '<|im_end|>' + '\\n' }}\n {%- elif message.role == \"assistant\" %}\n {%- set reasoning_content = '' %}\n {%- if message.reasoning_content is string %}\n {%- set reasoning_content = message.reasoning_content %}\n {%- else %}\n {%- if '</think>' in content %}\n {%- set reasoning_content = content.split('</think>')[0].rstrip('\\n').split('<think>')[-1].lstrip('\\n') %}\n {%- set content = content.split('</think>')[-1].lstrip('\\n') %}\n {%- endif %}\n {%- endif %}\n {%- set reasoning_content = reasoning_content|trim %}\n {%- if (preserve_thinking is defined and preserve_thinking is true) or (loop.index0 > ns.last_query_index) %}\n {{- '<|im_start|>' + message.role + '\\n<think>\\n' + reasoning_content + '\\n</think>\\n\\n' + content }}\n {%- else %}\n {{- '<|im_start|>' + message.role + '\\n' + content }}\n {%- endif %}\n {%- if message.tool_calls and message.tool_calls is iterable and message.tool_calls is not mapping %}\n {%- for tool_call in message.tool_calls %}\n {%- if tool_call.function is defined %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {%- if loop.first %}\n {%- if content|trim %}\n {{- '\\n\\n<tool_call>\\n<function=' + tool_call.name + '>\\n' }}\n {%- else %}\n {{- '<tool_call>\\n<function=' + tool_call.name + '>\\n' }}\n {%- endif %}\n {%- else %}\n {{- '\\n<tool_call>\\n<function=' + tool_call.name + '>\\n' }}\n {%- endif %}\n {%- if tool_call.arguments is defined %}\n {%- for args_name, args_value in tool_call.arguments|items %}\n {{- '<parameter=' + args_name + '>\\n' }}\n {%- set args_value = args_value | string if args_value is string else args_value | tojson | safe %}\n {{- args_value }}\n {{- '\\n</parameter>\\n' }}\n {%- endfor %}\n {%- endif %}\n {{- '</function>\\n</tool_call>' }}\n {%- endfor %}\n {%- endif %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if loop.previtem and loop.previtem.role != \"tool\" %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {{- content }}\n {{- '\\n</tool_response>' }}\n {%- if not loop.last and loop.nextitem.role != \"tool\" %}\n {{- '<|im_end|>\\n' }}\n {%- elif loop.last %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- else %}\n {{- raise_exception('Unexpected message role.') }}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\\n' }}\n {%- if enable_thinking is defined and enable_thinking is false %}\n {{- '<think>\\n\\n</think>\\n\\n' }}\n {%- else %}\n {{- '<think>\\n' }}\n {%- endif %}\n{%- endif %}",
|
| 286 |
+
"clean_up_tokenization_spaces": false,
|
| 287 |
+
"eos_token": "<|im_end|>",
|
| 288 |
+
"errors": "replace",
|
| 289 |
+
"model_max_length": 262144,
|
| 290 |
+
"pad_token": "<|endoftext|>",
|
| 291 |
+
"split_special_tokens": false,
|
| 292 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 293 |
+
"unk_token": null,
|
| 294 |
+
"add_bos_token": false,
|
| 295 |
+
"pretokenize_regex": "(?i:'s|'t|'re|'ve|'m|'ll|'d)|[^\\r\\n\\p{L}\\p{N}]?[\\p{L}\\p{M}]+|\\p{N}| ?[^\\s\\p{L}\\p{M}\\p{N}]+[\\r\\n]*|\\s*[\\r\\n]+|\\s+(?!\\S)|\\s+",
|
| 296 |
+
"extra_special_tokens": {
|
| 297 |
+
"audio_bos_token": "<|audio_start|>",
|
| 298 |
+
"audio_eos_token": "<|audio_end|>",
|
| 299 |
+
"audio_token": "<|audio_pad|>",
|
| 300 |
+
"image_token": "<|image_pad|>",
|
| 301 |
+
"video_token": "<|video_pad|>",
|
| 302 |
+
"vision_bos_token": "<|vision_start|>",
|
| 303 |
+
"vision_eos_token": "<|vision_end|>"
|
| 304 |
+
}
|
| 305 |
+
}
|
|
The diff for this file is too large to render.
See raw diff
|
|
|