Instructions to use Carlosian/Gemma-4-12b-it-Abliterated-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 Carlosian/Gemma-4-12b-it-Abliterated-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 Carlosian/Gemma-4-12b-it-Abliterated-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf Carlosian/Gemma-4-12b-it-Abliterated-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 Carlosian/Gemma-4-12b-it-Abliterated-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf Carlosian/Gemma-4-12b-it-Abliterated-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 Carlosian/Gemma-4-12b-it-Abliterated-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf Carlosian/Gemma-4-12b-it-Abliterated-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 Carlosian/Gemma-4-12b-it-Abliterated-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf Carlosian/Gemma-4-12b-it-Abliterated-GGUF:Q4_K_M
Use Docker
docker model run hf.co/Carlosian/Gemma-4-12b-it-Abliterated-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use Carlosian/Gemma-4-12b-it-Abliterated-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Carlosian/Gemma-4-12b-it-Abliterated-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": "Carlosian/Gemma-4-12b-it-Abliterated-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Carlosian/Gemma-4-12b-it-Abliterated-GGUF:Q4_K_M
- Ollama
How to use Carlosian/Gemma-4-12b-it-Abliterated-GGUF with Ollama:
ollama run hf.co/Carlosian/Gemma-4-12b-it-Abliterated-GGUF:Q4_K_M
- Unsloth Studio
How to use Carlosian/Gemma-4-12b-it-Abliterated-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 Carlosian/Gemma-4-12b-it-Abliterated-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 Carlosian/Gemma-4-12b-it-Abliterated-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Carlosian/Gemma-4-12b-it-Abliterated-GGUF to start chatting
- Pi
How to use Carlosian/Gemma-4-12b-it-Abliterated-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Carlosian/Gemma-4-12b-it-Abliterated-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "Carlosian/Gemma-4-12b-it-Abliterated-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use Carlosian/Gemma-4-12b-it-Abliterated-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Carlosian/Gemma-4-12b-it-Abliterated-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 "Carlosian/Gemma-4-12b-it-Abliterated-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"
- Docker Model Runner
How to use Carlosian/Gemma-4-12b-it-Abliterated-GGUF with Docker Model Runner:
docker model run hf.co/Carlosian/Gemma-4-12b-it-Abliterated-GGUF:Q4_K_M
- Lemonade
How to use Carlosian/Gemma-4-12b-it-Abliterated-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Carlosian/Gemma-4-12b-it-Abliterated-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.Gemma-4-12b-it-Abliterated-GGUF-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use Carlosian/Gemma-4-12b-it-Abliterated-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 Carlosian/Gemma-4-12b-it-Abliterated-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 Carlosian/Gemma-4-12b-it-Abliterated-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat
Add full GGUF quant ladder for Gemma-4-12b-it-Abliterated
Browse files- .gitattributes +11 -0
- Gemma-4-12b-it-Abliterated.Q2_K.gguf +3 -0
- Gemma-4-12b-it-Abliterated.Q3_K_M.gguf +3 -0
- Gemma-4-12b-it-Abliterated.Q3_K_S.gguf +3 -0
- Gemma-4-12b-it-Abliterated.Q4_0.gguf +3 -0
- Gemma-4-12b-it-Abliterated.Q4_K_M.gguf +3 -0
- Gemma-4-12b-it-Abliterated.Q4_K_S.gguf +3 -0
- Gemma-4-12b-it-Abliterated.Q5_K_M.gguf +3 -0
- Gemma-4-12b-it-Abliterated.Q5_K_S.gguf +3 -0
- Gemma-4-12b-it-Abliterated.Q6_K.gguf +3 -0
- Gemma-4-12b-it-Abliterated.Q8_0.gguf +3 -0
- Gemma-4-12b-it-Abliterated.f16.gguf +3 -0
- README.md +16 -57
- convert.log +748 -0
- manifest.jsonl +10 -0
- smoke.txt +1 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,14 @@ saved_model/**/* 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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
Gemma-4-12b-it-Abliterated.Q2_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
Gemma-4-12b-it-Abliterated.Q3_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
Gemma-4-12b-it-Abliterated.Q3_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
Gemma-4-12b-it-Abliterated.Q4_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
Gemma-4-12b-it-Abliterated.Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
Gemma-4-12b-it-Abliterated.Q4_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
Gemma-4-12b-it-Abliterated.Q5_K_M.gguf filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
Gemma-4-12b-it-Abliterated.Q5_K_S.gguf filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
Gemma-4-12b-it-Abliterated.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
Gemma-4-12b-it-Abliterated.Q8_0.gguf filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
Gemma-4-12b-it-Abliterated.f16.gguf filter=lfs diff=lfs merge=lfs -text
|
Gemma-4-12b-it-Abliterated.Q2_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:77e66dd8895defb57d890dfaa3b60c0299ea9e1dbc46795913610b179caf7a40
|
| 3 |
+
size 4830147840
|
Gemma-4-12b-it-Abliterated.Q3_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:78fde8c567ba48a90a4d86587d2f55b2f81f8d680590b7f9b6e467b363434a06
|
| 3 |
+
size 6087087360
|
Gemma-4-12b-it-Abliterated.Q3_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:11e173aa6e645c86ffb02db83947156e9471dc863ce48cd6706769f594962a5a
|
| 3 |
+
size 5528229120
|
Gemma-4-12b-it-Abliterated.Q4_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:12a5a4a8b575cc005d1a06779e3d6d61e54adeaec41a926fc36307dedf2f4e2d
|
| 3 |
+
size 6975878400
|
Gemma-4-12b-it-Abliterated.Q4_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:279adedd4bf41feee54045210c7860fd6cde61cca4b87951e909e8163871b019
|
| 3 |
+
size 7381382400
|
Gemma-4-12b-it-Abliterated.Q4_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:79e9eefb40c341f19d8a3e9a5e820ec00358fce5125f19b7fd6a7aad078d22c6
|
| 3 |
+
size 7024047360
|
Gemma-4-12b-it-Abliterated.Q5_K_M.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3b1295df732ae7a3aa20c03ec4ce1a0c6763c450750472f39ac478755bf2a4ba
|
| 3 |
+
size 8547267840
|
Gemma-4-12b-it-Abliterated.Q5_K_S.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2cae74b39cc4bbe4e2f8cc19d396537677db35fc8578f82184ff1958c74e98ba
|
| 3 |
+
size 8338371840
|
Gemma-4-12b-it-Abliterated.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dd188a2825b4f755dac5798e1b958e8cfef91a3c3a2e2c7636427d30f24f2ac4
|
| 3 |
+
size 9786021120
|
Gemma-4-12b-it-Abliterated.Q8_0.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:38e197b511db68fbf2f38bc1d85500aa73d4c41ea06a8cfd2cac7bf3b23fdf76
|
| 3 |
+
size 12669646080
|
Gemma-4-12b-it-Abliterated.f16.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:15356b97da434e3473e9b67488cfb0e6dce9aaf2bc86c3a8b48a0e9e3ce3b29d
|
| 3 |
+
size 23832065280
|
README.md
CHANGED
|
@@ -1,70 +1,29 @@
|
|
| 1 |
---
|
| 2 |
base_model: Carlosian/Gemma-4-12b-it-Abliterated
|
| 3 |
base_model_relation: quantized
|
| 4 |
-
|
| 5 |
-
license_link: https://ai.google.dev/gemma/terms
|
| 6 |
-
language:
|
| 7 |
-
- en
|
| 8 |
pipeline_tag: text-generation
|
| 9 |
tags:
|
| 10 |
-
-
|
| 11 |
-
-
|
| 12 |
- abliterated
|
| 13 |
- uncensored
|
| 14 |
-
- gguf
|
| 15 |
- llama.cpp
|
| 16 |
-
|
| 17 |
-
- quantized
|
| 18 |
-
- research
|
| 19 |
---
|
| 20 |
|
| 21 |
-
# Gemma-4-
|
| 22 |
-
|
| 23 |
-
**imatrix-quantized GGUF builds** of [`Carlosian/Gemma-4-12b-it-Abliterated`](https://huggingface.co/Carlosian/Gemma-4-12b-it-Abliterated) — the Stage-1 **abliterated** (refusal-removed) Gemma-4-12B base, with **self-harm / suicide guardrails deliberately retained**. For the method, validation (97.5% refusal removal, no cognitive damage), and responsible-use terms, see the parent repo.
|
| 24 |
-
|
| 25 |
-
These are **text-only** GGUFs: the source is a unified multimodal checkpoint, and only the language tower (`gemma4` arch, 48 layers) is converted — standard for llama.cpp text inference.
|
| 26 |
-
|
| 27 |
-
> ⚠️ Dual-use research model. Its general instruction-refusal behavior has been removed. Use is governed by the [Gemma Terms of Use](https://ai.google.dev/gemma/terms) and [Prohibited Use Policy](https://ai.google.dev/gemma/prohibited_use_policy).
|
| 28 |
-
|
| 29 |
-
## Quant ladder
|
| 30 |
-
|
| 31 |
-
All quants below `Q6_K` are built with an **importance matrix** (imatrix) computed on the Q8_0 over the `calibration_datav3` corpus (100 chunks × 512 ctx), which measurably improves the low-bit quants.
|
| 32 |
-
|
| 33 |
-
| File | Quant | Size | Notes |
|
| 34 |
-
|---|---|---:|---|
|
| 35 |
-
| `gemma4-12b-abliterated-IQ4_XS.gguf` | IQ4_XS | 6.6 GB | smallest; imatrix-dependent, good quality/size |
|
| 36 |
-
| `gemma4-12b-abliterated-Q4_K_M.gguf` | Q4_K_M | 7.4 GB | **recommended** balance |
|
| 37 |
-
| `gemma4-12b-abliterated-Q5_K_M.gguf` | Q5_K_M | 8.5 GB | higher quality |
|
| 38 |
-
| `gemma4-12b-abliterated-Q6_K.gguf` | Q6_K | 9.8 GB | near-lossless |
|
| 39 |
-
| `gemma4-12b-abliterated-Q8_0.gguf` | Q8_0 | 12.7 GB | effectively lossless |
|
| 40 |
-
| `gemma4-12b-abliterated.imatrix` | — | 7.5 MB | importance matrix (for re-quantizing) |
|
| 41 |
-
|
| 42 |
-
Tested on a Radeon 890M (Vulkan, `-ngl 99`); the Q4_K_M of these weights ran the residual-refusal audit at ~10 tok/s with 0.0% hard-refusal.
|
| 43 |
-
|
| 44 |
-
## Usage
|
| 45 |
-
|
| 46 |
-
**llama.cpp**
|
| 47 |
-
```bash
|
| 48 |
-
llama-cli -m gemma4-12b-abliterated-Q4_K_M.gguf -ngl 99 -c 8192 \
|
| 49 |
-
-p "Explain how a buffer overflow works."
|
| 50 |
-
# or serve an OpenAI-compatible endpoint:
|
| 51 |
-
llama-server -m gemma4-12b-abliterated-Q4_K_M.gguf -ngl 99 -c 8192
|
| 52 |
-
```
|
| 53 |
-
|
| 54 |
-
**Ollama**
|
| 55 |
-
```bash
|
| 56 |
-
# Modelfile: FROM ./gemma4-12b-abliterated-Q4_K_M.gguf
|
| 57 |
-
ollama create gemma4-abliterated -f Modelfile && ollama run gemma4-abliterated
|
| 58 |
-
```
|
| 59 |
-
|
| 60 |
-
Always use the Gemma chat template (the GGUF embeds it). Requires a llama.cpp build with `gemma4` support.
|
| 61 |
-
|
| 62 |
-
## Provenance
|
| 63 |
|
| 64 |
-
|
| 65 |
-
- Converted + quantized with llama.cpp; imatrix via `calibration_datav3`
|
| 66 |
-
- Selective abliteration with self-harm/suicide guardrails retained — see parent repo and the Nous-Heretic method paper.
|
| 67 |
|
| 68 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 69 |
|
| 70 |
-
|
|
|
|
| 1 |
---
|
| 2 |
base_model: Carlosian/Gemma-4-12b-it-Abliterated
|
| 3 |
base_model_relation: quantized
|
| 4 |
+
library_name: gguf
|
|
|
|
|
|
|
|
|
|
| 5 |
pipeline_tag: text-generation
|
| 6 |
tags:
|
| 7 |
+
- gguf
|
| 8 |
+
- quantized
|
| 9 |
- abliterated
|
| 10 |
- uncensored
|
|
|
|
| 11 |
- llama.cpp
|
| 12 |
+
license: other
|
|
|
|
|
|
|
| 13 |
---
|
| 14 |
|
| 15 |
+
# Gemma-4-12b-it-Abliterated — GGUF quant ladder
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
|
| 17 |
+
Quantized GGUF builds of [`Carlosian/Gemma-4-12b-it-Abliterated`](https://huggingface.co/Carlosian/Gemma-4-12b-it-Abliterated) for llama.cpp / Ollama / LM Studio.
|
|
|
|
|
|
|
| 18 |
|
| 19 |
+
| Quant | Typical use |
|
| 20 |
+
|-------|-------------|
|
| 21 |
+
| Q2_K | smallest / extreme low VRAM |
|
| 22 |
+
| Q3_K_S / Q3_K_M | low VRAM |
|
| 23 |
+
| Q4_0 / Q4_K_S / Q4_K_M | **recommended default (Q4_K_M)** |
|
| 24 |
+
| Q5_K_S / Q5_K_M | higher quality |
|
| 25 |
+
| Q6_K | near-lossless |
|
| 26 |
+
| Q8_0 | highest quality quant |
|
| 27 |
+
| F16 | full intermediate (large) |
|
| 28 |
|
| 29 |
+
Built with llama.cpp on Thunder Compute (A100). Generated 2026-07-20.
|
convert.log
ADDED
|
@@ -0,0 +1,748 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
INFO:hf-to-gguf:Loading model: Gemma-4-12b-it-Abliterated
|
| 2 |
+
WARNING:hf-to-gguf:Failed to load model config from /home/ubuntu/ladder/models/Gemma-4-12b-it-Abliterated: The checkpoint you are trying to load has model type `gemma4_unified` but Transformers does not recognize this architecture. This could be because of an issue with the checkpoint, or because your version of Transformers is out of date.
|
| 3 |
+
|
| 4 |
+
You can update Transformers with the command `pip install --upgrade transformers`. If this does not work, and the checkpoint is very new, then there may not be a release version that supports this model yet. In this case, you can get the most up-to-date code by installing Transformers from source with the command `pip install git+https://github.com/huggingface/transformers.git`
|
| 5 |
+
WARNING:hf-to-gguf:Trying to load config.json instead
|
| 6 |
+
INFO:hf-to-gguf:Model architecture: Gemma4UnifiedForConditionalGeneration
|
| 7 |
+
WARNING:hf-to-gguf:Failed to load model config from /home/ubuntu/ladder/models/Gemma-4-12b-it-Abliterated: The checkpoint you are trying to load has model type `gemma4_unified` but Transformers does not recognize this architecture. This could be because of an issue with the checkpoint, or because your version of Transformers is out of date.
|
| 8 |
+
|
| 9 |
+
You can update Transformers with the command `pip install --upgrade transformers`. If this does not work, and the checkpoint is very new, then there may not be a release version that supports this model yet. In this case, you can get the most up-to-date code by installing Transformers from source with the command `pip install git+https://github.com/huggingface/transformers.git`
|
| 10 |
+
WARNING:hf-to-gguf:Trying to load config.json instead
|
| 11 |
+
INFO:hf-to-gguf:gguf: indexing model part 'model.safetensors'
|
| 12 |
+
INFO:gguf.gguf_writer:gguf: This GGUF file is for Little Endian only
|
| 13 |
+
INFO:hf-to-gguf:Exporting model...
|
| 14 |
+
INFO:hf-to-gguf:rope_freqs.weight, torch.float32 --> F32, shape = {256}
|
| 15 |
+
INFO:hf-to-gguf:token_embd.weight, torch.bfloat16 --> F16, shape = {3840, 262144}
|
| 16 |
+
INFO:hf-to-gguf:blk.0.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 17 |
+
INFO:hf-to-gguf:blk.0.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 18 |
+
INFO:hf-to-gguf:blk.0.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 19 |
+
INFO:hf-to-gguf:blk.0.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 20 |
+
INFO:hf-to-gguf:blk.0.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 21 |
+
INFO:hf-to-gguf:blk.0.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 22 |
+
INFO:hf-to-gguf:blk.0.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 23 |
+
INFO:hf-to-gguf:blk.0.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 24 |
+
INFO:hf-to-gguf:blk.0.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 25 |
+
INFO:hf-to-gguf:blk.0.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 26 |
+
INFO:hf-to-gguf:blk.0.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 27 |
+
INFO:hf-to-gguf:blk.0.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 28 |
+
INFO:hf-to-gguf:blk.0.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 29 |
+
INFO:hf-to-gguf:blk.0.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 30 |
+
INFO:hf-to-gguf:blk.1.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 31 |
+
INFO:hf-to-gguf:blk.1.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 32 |
+
INFO:hf-to-gguf:blk.1.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 33 |
+
INFO:hf-to-gguf:blk.1.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 34 |
+
INFO:hf-to-gguf:blk.1.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 35 |
+
INFO:hf-to-gguf:blk.1.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 36 |
+
INFO:hf-to-gguf:blk.1.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 37 |
+
INFO:hf-to-gguf:blk.1.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 38 |
+
INFO:hf-to-gguf:blk.1.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 39 |
+
INFO:hf-to-gguf:blk.1.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 40 |
+
INFO:hf-to-gguf:blk.1.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 41 |
+
INFO:hf-to-gguf:blk.1.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 42 |
+
INFO:hf-to-gguf:blk.1.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 43 |
+
INFO:hf-to-gguf:blk.1.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 44 |
+
INFO:hf-to-gguf:blk.10.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 45 |
+
INFO:hf-to-gguf:blk.10.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 46 |
+
INFO:hf-to-gguf:blk.10.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 47 |
+
INFO:hf-to-gguf:blk.10.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 48 |
+
INFO:hf-to-gguf:blk.10.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 49 |
+
INFO:hf-to-gguf:blk.10.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 50 |
+
INFO:hf-to-gguf:blk.10.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 51 |
+
INFO:hf-to-gguf:blk.10.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 52 |
+
INFO:hf-to-gguf:blk.10.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 53 |
+
INFO:hf-to-gguf:blk.10.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 54 |
+
INFO:hf-to-gguf:blk.10.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 55 |
+
INFO:hf-to-gguf:blk.10.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 56 |
+
INFO:hf-to-gguf:blk.10.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 57 |
+
INFO:hf-to-gguf:blk.10.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 58 |
+
INFO:hf-to-gguf:blk.11.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 59 |
+
INFO:hf-to-gguf:blk.11.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 60 |
+
INFO:hf-to-gguf:blk.11.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 61 |
+
INFO:hf-to-gguf:blk.11.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 62 |
+
INFO:hf-to-gguf:blk.11.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 63 |
+
INFO:hf-to-gguf:blk.11.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 64 |
+
INFO:hf-to-gguf:blk.11.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 65 |
+
INFO:hf-to-gguf:blk.11.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 66 |
+
INFO:hf-to-gguf:blk.11.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {512}
|
| 67 |
+
INFO:hf-to-gguf:blk.11.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 512}
|
| 68 |
+
INFO:hf-to-gguf:blk.11.attn_output.weight, torch.bfloat16 --> F16, shape = {8192, 3840}
|
| 69 |
+
INFO:hf-to-gguf:blk.11.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {512}
|
| 70 |
+
INFO:hf-to-gguf:blk.11.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 8192}
|
| 71 |
+
INFO:hf-to-gguf:blk.12.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 72 |
+
INFO:hf-to-gguf:blk.12.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 73 |
+
INFO:hf-to-gguf:blk.12.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 74 |
+
INFO:hf-to-gguf:blk.12.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 75 |
+
INFO:hf-to-gguf:blk.12.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 76 |
+
INFO:hf-to-gguf:blk.12.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 77 |
+
INFO:hf-to-gguf:blk.12.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 78 |
+
INFO:hf-to-gguf:blk.12.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 79 |
+
INFO:hf-to-gguf:blk.12.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 80 |
+
INFO:hf-to-gguf:blk.12.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 81 |
+
INFO:hf-to-gguf:blk.12.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 82 |
+
INFO:hf-to-gguf:blk.12.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 83 |
+
INFO:hf-to-gguf:blk.12.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 84 |
+
INFO:hf-to-gguf:blk.12.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 85 |
+
INFO:hf-to-gguf:blk.13.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 86 |
+
INFO:hf-to-gguf:blk.13.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 87 |
+
INFO:hf-to-gguf:blk.13.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 88 |
+
INFO:hf-to-gguf:blk.13.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 89 |
+
INFO:hf-to-gguf:blk.13.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 90 |
+
INFO:hf-to-gguf:blk.13.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 91 |
+
INFO:hf-to-gguf:blk.13.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 92 |
+
INFO:hf-to-gguf:blk.13.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 93 |
+
INFO:hf-to-gguf:blk.13.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 94 |
+
INFO:hf-to-gguf:blk.13.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 95 |
+
INFO:hf-to-gguf:blk.13.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 96 |
+
INFO:hf-to-gguf:blk.13.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 97 |
+
INFO:hf-to-gguf:blk.13.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 98 |
+
INFO:hf-to-gguf:blk.13.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 99 |
+
INFO:hf-to-gguf:blk.14.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 100 |
+
INFO:hf-to-gguf:blk.14.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 101 |
+
INFO:hf-to-gguf:blk.14.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 102 |
+
INFO:hf-to-gguf:blk.14.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 103 |
+
INFO:hf-to-gguf:blk.14.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 104 |
+
INFO:hf-to-gguf:blk.14.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 105 |
+
INFO:hf-to-gguf:blk.14.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 106 |
+
INFO:hf-to-gguf:blk.14.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 107 |
+
INFO:hf-to-gguf:blk.14.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 108 |
+
INFO:hf-to-gguf:blk.14.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 109 |
+
INFO:hf-to-gguf:blk.14.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 110 |
+
INFO:hf-to-gguf:blk.14.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 111 |
+
INFO:hf-to-gguf:blk.14.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 112 |
+
INFO:hf-to-gguf:blk.14.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 113 |
+
INFO:hf-to-gguf:blk.15.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 114 |
+
INFO:hf-to-gguf:blk.15.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 115 |
+
INFO:hf-to-gguf:blk.15.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 116 |
+
INFO:hf-to-gguf:blk.15.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 117 |
+
INFO:hf-to-gguf:blk.15.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 118 |
+
INFO:hf-to-gguf:blk.15.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 119 |
+
INFO:hf-to-gguf:blk.15.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 120 |
+
INFO:hf-to-gguf:blk.15.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 121 |
+
INFO:hf-to-gguf:blk.15.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 122 |
+
INFO:hf-to-gguf:blk.15.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 123 |
+
INFO:hf-to-gguf:blk.15.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 124 |
+
INFO:hf-to-gguf:blk.15.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 125 |
+
INFO:hf-to-gguf:blk.15.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 126 |
+
INFO:hf-to-gguf:blk.15.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 127 |
+
INFO:hf-to-gguf:blk.16.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 128 |
+
INFO:hf-to-gguf:blk.16.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 129 |
+
INFO:hf-to-gguf:blk.16.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 130 |
+
INFO:hf-to-gguf:blk.16.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 131 |
+
INFO:hf-to-gguf:blk.16.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 132 |
+
INFO:hf-to-gguf:blk.16.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 133 |
+
INFO:hf-to-gguf:blk.16.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 134 |
+
INFO:hf-to-gguf:blk.16.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 135 |
+
INFO:hf-to-gguf:blk.16.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 136 |
+
INFO:hf-to-gguf:blk.16.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 137 |
+
INFO:hf-to-gguf:blk.16.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 138 |
+
INFO:hf-to-gguf:blk.16.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 139 |
+
INFO:hf-to-gguf:blk.16.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 140 |
+
INFO:hf-to-gguf:blk.16.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 141 |
+
INFO:hf-to-gguf:blk.17.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 142 |
+
INFO:hf-to-gguf:blk.17.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 143 |
+
INFO:hf-to-gguf:blk.17.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 144 |
+
INFO:hf-to-gguf:blk.17.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 145 |
+
INFO:hf-to-gguf:blk.17.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 146 |
+
INFO:hf-to-gguf:blk.17.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 147 |
+
INFO:hf-to-gguf:blk.17.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 148 |
+
INFO:hf-to-gguf:blk.17.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 149 |
+
INFO:hf-to-gguf:blk.17.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {512}
|
| 150 |
+
INFO:hf-to-gguf:blk.17.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 512}
|
| 151 |
+
INFO:hf-to-gguf:blk.17.attn_output.weight, torch.bfloat16 --> F16, shape = {8192, 3840}
|
| 152 |
+
INFO:hf-to-gguf:blk.17.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {512}
|
| 153 |
+
INFO:hf-to-gguf:blk.17.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 8192}
|
| 154 |
+
INFO:hf-to-gguf:blk.18.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 155 |
+
INFO:hf-to-gguf:blk.18.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 156 |
+
INFO:hf-to-gguf:blk.18.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 157 |
+
INFO:hf-to-gguf:blk.18.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 158 |
+
INFO:hf-to-gguf:blk.18.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 159 |
+
INFO:hf-to-gguf:blk.18.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 160 |
+
INFO:hf-to-gguf:blk.18.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 161 |
+
INFO:hf-to-gguf:blk.18.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 162 |
+
INFO:hf-to-gguf:blk.18.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 163 |
+
INFO:hf-to-gguf:blk.18.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 164 |
+
INFO:hf-to-gguf:blk.18.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 165 |
+
INFO:hf-to-gguf:blk.18.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 166 |
+
INFO:hf-to-gguf:blk.18.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 167 |
+
INFO:hf-to-gguf:blk.18.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 168 |
+
INFO:hf-to-gguf:blk.19.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 169 |
+
INFO:hf-to-gguf:blk.19.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 170 |
+
INFO:hf-to-gguf:blk.19.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 171 |
+
INFO:hf-to-gguf:blk.19.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 172 |
+
INFO:hf-to-gguf:blk.19.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 173 |
+
INFO:hf-to-gguf:blk.19.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 174 |
+
INFO:hf-to-gguf:blk.19.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 175 |
+
INFO:hf-to-gguf:blk.19.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 176 |
+
INFO:hf-to-gguf:blk.19.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 177 |
+
INFO:hf-to-gguf:blk.19.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 178 |
+
INFO:hf-to-gguf:blk.19.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 179 |
+
INFO:hf-to-gguf:blk.19.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 180 |
+
INFO:hf-to-gguf:blk.19.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 181 |
+
INFO:hf-to-gguf:blk.19.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 182 |
+
INFO:hf-to-gguf:blk.2.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 183 |
+
INFO:hf-to-gguf:blk.2.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 184 |
+
INFO:hf-to-gguf:blk.2.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 185 |
+
INFO:hf-to-gguf:blk.2.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 186 |
+
INFO:hf-to-gguf:blk.2.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 187 |
+
INFO:hf-to-gguf:blk.2.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 188 |
+
INFO:hf-to-gguf:blk.2.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 189 |
+
INFO:hf-to-gguf:blk.2.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 190 |
+
INFO:hf-to-gguf:blk.2.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 191 |
+
INFO:hf-to-gguf:blk.2.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 192 |
+
INFO:hf-to-gguf:blk.2.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 193 |
+
INFO:hf-to-gguf:blk.2.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 194 |
+
INFO:hf-to-gguf:blk.2.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 195 |
+
INFO:hf-to-gguf:blk.2.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 196 |
+
INFO:hf-to-gguf:blk.20.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 197 |
+
INFO:hf-to-gguf:blk.20.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 198 |
+
INFO:hf-to-gguf:blk.20.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 199 |
+
INFO:hf-to-gguf:blk.20.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 200 |
+
INFO:hf-to-gguf:blk.20.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 201 |
+
INFO:hf-to-gguf:blk.20.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 202 |
+
INFO:hf-to-gguf:blk.20.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 203 |
+
INFO:hf-to-gguf:blk.20.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 204 |
+
INFO:hf-to-gguf:blk.20.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 205 |
+
INFO:hf-to-gguf:blk.20.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 206 |
+
INFO:hf-to-gguf:blk.20.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 207 |
+
INFO:hf-to-gguf:blk.20.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 208 |
+
INFO:hf-to-gguf:blk.20.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 209 |
+
INFO:hf-to-gguf:blk.20.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 210 |
+
INFO:hf-to-gguf:blk.21.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 211 |
+
INFO:hf-to-gguf:blk.21.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 212 |
+
INFO:hf-to-gguf:blk.21.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 213 |
+
INFO:hf-to-gguf:blk.21.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 214 |
+
INFO:hf-to-gguf:blk.21.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 215 |
+
INFO:hf-to-gguf:blk.21.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 216 |
+
INFO:hf-to-gguf:blk.21.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 217 |
+
INFO:hf-to-gguf:blk.21.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 218 |
+
INFO:hf-to-gguf:blk.21.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 219 |
+
INFO:hf-to-gguf:blk.21.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 220 |
+
INFO:hf-to-gguf:blk.21.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 221 |
+
INFO:hf-to-gguf:blk.21.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 222 |
+
INFO:hf-to-gguf:blk.21.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 223 |
+
INFO:hf-to-gguf:blk.21.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 224 |
+
INFO:hf-to-gguf:blk.22.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 225 |
+
INFO:hf-to-gguf:blk.22.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 226 |
+
INFO:hf-to-gguf:blk.22.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 227 |
+
INFO:hf-to-gguf:blk.22.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 228 |
+
INFO:hf-to-gguf:blk.22.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 229 |
+
INFO:hf-to-gguf:blk.22.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 230 |
+
INFO:hf-to-gguf:blk.22.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 231 |
+
INFO:hf-to-gguf:blk.22.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 232 |
+
INFO:hf-to-gguf:blk.22.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 233 |
+
INFO:hf-to-gguf:blk.22.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 234 |
+
INFO:hf-to-gguf:blk.22.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 235 |
+
INFO:hf-to-gguf:blk.22.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 236 |
+
INFO:hf-to-gguf:blk.22.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 237 |
+
INFO:hf-to-gguf:blk.22.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 238 |
+
INFO:hf-to-gguf:blk.23.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 239 |
+
INFO:hf-to-gguf:blk.23.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 240 |
+
INFO:hf-to-gguf:blk.23.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 241 |
+
INFO:hf-to-gguf:blk.23.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 242 |
+
INFO:hf-to-gguf:blk.23.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 243 |
+
INFO:hf-to-gguf:blk.23.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 244 |
+
INFO:hf-to-gguf:blk.23.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 245 |
+
INFO:hf-to-gguf:blk.23.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 246 |
+
INFO:hf-to-gguf:blk.23.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {512}
|
| 247 |
+
INFO:hf-to-gguf:blk.23.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 512}
|
| 248 |
+
INFO:hf-to-gguf:blk.23.attn_output.weight, torch.bfloat16 --> F16, shape = {8192, 3840}
|
| 249 |
+
INFO:hf-to-gguf:blk.23.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {512}
|
| 250 |
+
INFO:hf-to-gguf:blk.23.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 8192}
|
| 251 |
+
INFO:hf-to-gguf:blk.24.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 252 |
+
INFO:hf-to-gguf:blk.24.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 253 |
+
INFO:hf-to-gguf:blk.24.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 254 |
+
INFO:hf-to-gguf:blk.24.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 255 |
+
INFO:hf-to-gguf:blk.24.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 256 |
+
INFO:hf-to-gguf:blk.24.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 257 |
+
INFO:hf-to-gguf:blk.24.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 258 |
+
INFO:hf-to-gguf:blk.24.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 259 |
+
INFO:hf-to-gguf:blk.24.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 260 |
+
INFO:hf-to-gguf:blk.24.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 261 |
+
INFO:hf-to-gguf:blk.24.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 262 |
+
INFO:hf-to-gguf:blk.24.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 263 |
+
INFO:hf-to-gguf:blk.24.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 264 |
+
INFO:hf-to-gguf:blk.24.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 265 |
+
INFO:hf-to-gguf:blk.25.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 266 |
+
INFO:hf-to-gguf:blk.25.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 267 |
+
INFO:hf-to-gguf:blk.25.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 268 |
+
INFO:hf-to-gguf:blk.25.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 269 |
+
INFO:hf-to-gguf:blk.25.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 270 |
+
INFO:hf-to-gguf:blk.25.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 271 |
+
INFO:hf-to-gguf:blk.25.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 272 |
+
INFO:hf-to-gguf:blk.25.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 273 |
+
INFO:hf-to-gguf:blk.25.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 274 |
+
INFO:hf-to-gguf:blk.25.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 275 |
+
INFO:hf-to-gguf:blk.25.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 276 |
+
INFO:hf-to-gguf:blk.25.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 277 |
+
INFO:hf-to-gguf:blk.25.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 278 |
+
INFO:hf-to-gguf:blk.25.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 279 |
+
INFO:hf-to-gguf:blk.26.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 280 |
+
INFO:hf-to-gguf:blk.26.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 281 |
+
INFO:hf-to-gguf:blk.26.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 282 |
+
INFO:hf-to-gguf:blk.26.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 283 |
+
INFO:hf-to-gguf:blk.26.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 284 |
+
INFO:hf-to-gguf:blk.26.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 285 |
+
INFO:hf-to-gguf:blk.26.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 286 |
+
INFO:hf-to-gguf:blk.26.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 287 |
+
INFO:hf-to-gguf:blk.26.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 288 |
+
INFO:hf-to-gguf:blk.26.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 289 |
+
INFO:hf-to-gguf:blk.26.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 290 |
+
INFO:hf-to-gguf:blk.26.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 291 |
+
INFO:hf-to-gguf:blk.26.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 292 |
+
INFO:hf-to-gguf:blk.26.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 293 |
+
INFO:hf-to-gguf:blk.27.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 294 |
+
INFO:hf-to-gguf:blk.27.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 295 |
+
INFO:hf-to-gguf:blk.27.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 296 |
+
INFO:hf-to-gguf:blk.27.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 297 |
+
INFO:hf-to-gguf:blk.27.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 298 |
+
INFO:hf-to-gguf:blk.27.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 299 |
+
INFO:hf-to-gguf:blk.27.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 300 |
+
INFO:hf-to-gguf:blk.27.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 301 |
+
INFO:hf-to-gguf:blk.27.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 302 |
+
INFO:hf-to-gguf:blk.27.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 303 |
+
INFO:hf-to-gguf:blk.27.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 304 |
+
INFO:hf-to-gguf:blk.27.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 305 |
+
INFO:hf-to-gguf:blk.27.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 306 |
+
INFO:hf-to-gguf:blk.27.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 307 |
+
INFO:hf-to-gguf:blk.28.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 308 |
+
INFO:hf-to-gguf:blk.28.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 309 |
+
INFO:hf-to-gguf:blk.28.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 310 |
+
INFO:hf-to-gguf:blk.28.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 311 |
+
INFO:hf-to-gguf:blk.28.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 312 |
+
INFO:hf-to-gguf:blk.28.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 313 |
+
INFO:hf-to-gguf:blk.28.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 314 |
+
INFO:hf-to-gguf:blk.28.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 315 |
+
INFO:hf-to-gguf:blk.28.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 316 |
+
INFO:hf-to-gguf:blk.28.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 317 |
+
INFO:hf-to-gguf:blk.28.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 318 |
+
INFO:hf-to-gguf:blk.28.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 319 |
+
INFO:hf-to-gguf:blk.28.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 320 |
+
INFO:hf-to-gguf:blk.28.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 321 |
+
INFO:hf-to-gguf:blk.29.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 322 |
+
INFO:hf-to-gguf:blk.29.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 323 |
+
INFO:hf-to-gguf:blk.29.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 324 |
+
INFO:hf-to-gguf:blk.29.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 325 |
+
INFO:hf-to-gguf:blk.29.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 326 |
+
INFO:hf-to-gguf:blk.29.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 327 |
+
INFO:hf-to-gguf:blk.29.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 328 |
+
INFO:hf-to-gguf:blk.29.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 329 |
+
INFO:hf-to-gguf:blk.29.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {512}
|
| 330 |
+
INFO:hf-to-gguf:blk.29.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 512}
|
| 331 |
+
INFO:hf-to-gguf:blk.29.attn_output.weight, torch.bfloat16 --> F16, shape = {8192, 3840}
|
| 332 |
+
INFO:hf-to-gguf:blk.29.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {512}
|
| 333 |
+
INFO:hf-to-gguf:blk.29.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 8192}
|
| 334 |
+
INFO:hf-to-gguf:blk.3.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 335 |
+
INFO:hf-to-gguf:blk.3.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 336 |
+
INFO:hf-to-gguf:blk.3.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 337 |
+
INFO:hf-to-gguf:blk.3.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 338 |
+
INFO:hf-to-gguf:blk.3.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 339 |
+
INFO:hf-to-gguf:blk.3.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 340 |
+
INFO:hf-to-gguf:blk.3.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 341 |
+
INFO:hf-to-gguf:blk.3.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 342 |
+
INFO:hf-to-gguf:blk.3.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 343 |
+
INFO:hf-to-gguf:blk.3.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 344 |
+
INFO:hf-to-gguf:blk.3.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 345 |
+
INFO:hf-to-gguf:blk.3.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 346 |
+
INFO:hf-to-gguf:blk.3.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 347 |
+
INFO:hf-to-gguf:blk.3.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 348 |
+
INFO:hf-to-gguf:blk.30.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 349 |
+
INFO:hf-to-gguf:blk.30.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 350 |
+
INFO:hf-to-gguf:blk.30.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 351 |
+
INFO:hf-to-gguf:blk.30.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 352 |
+
INFO:hf-to-gguf:blk.30.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 353 |
+
INFO:hf-to-gguf:blk.30.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 354 |
+
INFO:hf-to-gguf:blk.30.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 355 |
+
INFO:hf-to-gguf:blk.30.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 356 |
+
INFO:hf-to-gguf:blk.30.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 357 |
+
INFO:hf-to-gguf:blk.30.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 358 |
+
INFO:hf-to-gguf:blk.30.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 359 |
+
INFO:hf-to-gguf:blk.30.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 360 |
+
INFO:hf-to-gguf:blk.30.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 361 |
+
INFO:hf-to-gguf:blk.30.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 362 |
+
INFO:hf-to-gguf:blk.31.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 363 |
+
INFO:hf-to-gguf:blk.31.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 364 |
+
INFO:hf-to-gguf:blk.31.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 365 |
+
INFO:hf-to-gguf:blk.31.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 366 |
+
INFO:hf-to-gguf:blk.31.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 367 |
+
INFO:hf-to-gguf:blk.31.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 368 |
+
INFO:hf-to-gguf:blk.31.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 369 |
+
INFO:hf-to-gguf:blk.31.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 370 |
+
INFO:hf-to-gguf:blk.31.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 371 |
+
INFO:hf-to-gguf:blk.31.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 372 |
+
INFO:hf-to-gguf:blk.31.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 373 |
+
INFO:hf-to-gguf:blk.31.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 374 |
+
INFO:hf-to-gguf:blk.31.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 375 |
+
INFO:hf-to-gguf:blk.31.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 376 |
+
INFO:hf-to-gguf:blk.32.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 377 |
+
INFO:hf-to-gguf:blk.32.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 378 |
+
INFO:hf-to-gguf:blk.32.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 379 |
+
INFO:hf-to-gguf:blk.32.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 380 |
+
INFO:hf-to-gguf:blk.32.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 381 |
+
INFO:hf-to-gguf:blk.32.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 382 |
+
INFO:hf-to-gguf:blk.32.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 383 |
+
INFO:hf-to-gguf:blk.32.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 384 |
+
INFO:hf-to-gguf:blk.32.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 385 |
+
INFO:hf-to-gguf:blk.32.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 386 |
+
INFO:hf-to-gguf:blk.32.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 387 |
+
INFO:hf-to-gguf:blk.32.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 388 |
+
INFO:hf-to-gguf:blk.32.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 389 |
+
INFO:hf-to-gguf:blk.32.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 390 |
+
INFO:hf-to-gguf:blk.33.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 391 |
+
INFO:hf-to-gguf:blk.33.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 392 |
+
INFO:hf-to-gguf:blk.33.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 393 |
+
INFO:hf-to-gguf:blk.33.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 394 |
+
INFO:hf-to-gguf:blk.33.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 395 |
+
INFO:hf-to-gguf:blk.33.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 396 |
+
INFO:hf-to-gguf:blk.33.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 397 |
+
INFO:hf-to-gguf:blk.33.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 398 |
+
INFO:hf-to-gguf:blk.33.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 399 |
+
INFO:hf-to-gguf:blk.33.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 400 |
+
INFO:hf-to-gguf:blk.33.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 401 |
+
INFO:hf-to-gguf:blk.33.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 402 |
+
INFO:hf-to-gguf:blk.33.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 403 |
+
INFO:hf-to-gguf:blk.33.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 404 |
+
INFO:hf-to-gguf:blk.34.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 405 |
+
INFO:hf-to-gguf:blk.34.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 406 |
+
INFO:hf-to-gguf:blk.34.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 407 |
+
INFO:hf-to-gguf:blk.34.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 408 |
+
INFO:hf-to-gguf:blk.34.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 409 |
+
INFO:hf-to-gguf:blk.34.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 410 |
+
INFO:hf-to-gguf:blk.34.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 411 |
+
INFO:hf-to-gguf:blk.34.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 412 |
+
INFO:hf-to-gguf:blk.34.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 413 |
+
INFO:hf-to-gguf:blk.34.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 414 |
+
INFO:hf-to-gguf:blk.34.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 415 |
+
INFO:hf-to-gguf:blk.34.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 416 |
+
INFO:hf-to-gguf:blk.34.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 417 |
+
INFO:hf-to-gguf:blk.34.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 418 |
+
INFO:hf-to-gguf:blk.35.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 419 |
+
INFO:hf-to-gguf:blk.35.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 420 |
+
INFO:hf-to-gguf:blk.35.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 421 |
+
INFO:hf-to-gguf:blk.35.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 422 |
+
INFO:hf-to-gguf:blk.35.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 423 |
+
INFO:hf-to-gguf:blk.35.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 424 |
+
INFO:hf-to-gguf:blk.35.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 425 |
+
INFO:hf-to-gguf:blk.35.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 426 |
+
INFO:hf-to-gguf:blk.35.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {512}
|
| 427 |
+
INFO:hf-to-gguf:blk.35.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 512}
|
| 428 |
+
INFO:hf-to-gguf:blk.35.attn_output.weight, torch.bfloat16 --> F16, shape = {8192, 3840}
|
| 429 |
+
INFO:hf-to-gguf:blk.35.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {512}
|
| 430 |
+
INFO:hf-to-gguf:blk.35.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 8192}
|
| 431 |
+
INFO:hf-to-gguf:blk.36.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 432 |
+
INFO:hf-to-gguf:blk.36.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 433 |
+
INFO:hf-to-gguf:blk.36.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 434 |
+
INFO:hf-to-gguf:blk.36.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 435 |
+
INFO:hf-to-gguf:blk.36.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 436 |
+
INFO:hf-to-gguf:blk.36.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 437 |
+
INFO:hf-to-gguf:blk.36.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 438 |
+
INFO:hf-to-gguf:blk.36.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 439 |
+
INFO:hf-to-gguf:blk.36.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 440 |
+
INFO:hf-to-gguf:blk.36.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 441 |
+
INFO:hf-to-gguf:blk.36.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 442 |
+
INFO:hf-to-gguf:blk.36.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 443 |
+
INFO:hf-to-gguf:blk.36.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 444 |
+
INFO:hf-to-gguf:blk.36.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 445 |
+
INFO:hf-to-gguf:blk.37.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 446 |
+
INFO:hf-to-gguf:blk.37.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 447 |
+
INFO:hf-to-gguf:blk.37.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 448 |
+
INFO:hf-to-gguf:blk.37.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 449 |
+
INFO:hf-to-gguf:blk.37.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 450 |
+
INFO:hf-to-gguf:blk.37.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 451 |
+
INFO:hf-to-gguf:blk.37.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 452 |
+
INFO:hf-to-gguf:blk.37.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 453 |
+
INFO:hf-to-gguf:blk.37.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 454 |
+
INFO:hf-to-gguf:blk.37.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 455 |
+
INFO:hf-to-gguf:blk.37.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 456 |
+
INFO:hf-to-gguf:blk.37.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 457 |
+
INFO:hf-to-gguf:blk.37.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 458 |
+
INFO:hf-to-gguf:blk.37.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 459 |
+
INFO:hf-to-gguf:blk.38.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 460 |
+
INFO:hf-to-gguf:blk.38.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 461 |
+
INFO:hf-to-gguf:blk.38.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 462 |
+
INFO:hf-to-gguf:blk.38.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 463 |
+
INFO:hf-to-gguf:blk.38.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 464 |
+
INFO:hf-to-gguf:blk.38.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 465 |
+
INFO:hf-to-gguf:blk.38.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 466 |
+
INFO:hf-to-gguf:blk.38.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 467 |
+
INFO:hf-to-gguf:blk.38.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 468 |
+
INFO:hf-to-gguf:blk.38.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 469 |
+
INFO:hf-to-gguf:blk.38.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 470 |
+
INFO:hf-to-gguf:blk.38.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 471 |
+
INFO:hf-to-gguf:blk.38.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 472 |
+
INFO:hf-to-gguf:blk.38.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 473 |
+
INFO:hf-to-gguf:blk.39.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 474 |
+
INFO:hf-to-gguf:blk.39.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 475 |
+
INFO:hf-to-gguf:blk.39.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 476 |
+
INFO:hf-to-gguf:blk.39.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 477 |
+
INFO:hf-to-gguf:blk.39.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 478 |
+
INFO:hf-to-gguf:blk.39.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 479 |
+
INFO:hf-to-gguf:blk.39.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 480 |
+
INFO:hf-to-gguf:blk.39.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 481 |
+
INFO:hf-to-gguf:blk.39.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 482 |
+
INFO:hf-to-gguf:blk.39.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 483 |
+
INFO:hf-to-gguf:blk.39.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 484 |
+
INFO:hf-to-gguf:blk.39.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 485 |
+
INFO:hf-to-gguf:blk.39.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 486 |
+
INFO:hf-to-gguf:blk.39.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 487 |
+
INFO:hf-to-gguf:blk.4.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 488 |
+
INFO:hf-to-gguf:blk.4.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 489 |
+
INFO:hf-to-gguf:blk.4.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 490 |
+
INFO:hf-to-gguf:blk.4.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 491 |
+
INFO:hf-to-gguf:blk.4.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 492 |
+
INFO:hf-to-gguf:blk.4.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 493 |
+
INFO:hf-to-gguf:blk.4.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 494 |
+
INFO:hf-to-gguf:blk.4.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 495 |
+
INFO:hf-to-gguf:blk.4.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 496 |
+
INFO:hf-to-gguf:blk.4.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 497 |
+
INFO:hf-to-gguf:blk.4.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 498 |
+
INFO:hf-to-gguf:blk.4.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 499 |
+
INFO:hf-to-gguf:blk.4.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 500 |
+
INFO:hf-to-gguf:blk.4.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 501 |
+
INFO:hf-to-gguf:blk.40.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 502 |
+
INFO:hf-to-gguf:blk.40.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 503 |
+
INFO:hf-to-gguf:blk.40.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 504 |
+
INFO:hf-to-gguf:blk.40.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 505 |
+
INFO:hf-to-gguf:blk.40.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 506 |
+
INFO:hf-to-gguf:blk.40.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 507 |
+
INFO:hf-to-gguf:blk.40.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 508 |
+
INFO:hf-to-gguf:blk.40.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 509 |
+
INFO:hf-to-gguf:blk.40.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 510 |
+
INFO:hf-to-gguf:blk.40.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 511 |
+
INFO:hf-to-gguf:blk.40.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 512 |
+
INFO:hf-to-gguf:blk.40.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 513 |
+
INFO:hf-to-gguf:blk.40.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 514 |
+
INFO:hf-to-gguf:blk.40.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 515 |
+
INFO:hf-to-gguf:blk.41.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 516 |
+
INFO:hf-to-gguf:blk.41.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 517 |
+
INFO:hf-to-gguf:blk.41.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 518 |
+
INFO:hf-to-gguf:blk.41.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 519 |
+
INFO:hf-to-gguf:blk.41.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 520 |
+
INFO:hf-to-gguf:blk.41.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 521 |
+
INFO:hf-to-gguf:blk.41.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 522 |
+
INFO:hf-to-gguf:blk.41.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 523 |
+
INFO:hf-to-gguf:blk.41.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {512}
|
| 524 |
+
INFO:hf-to-gguf:blk.41.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 512}
|
| 525 |
+
INFO:hf-to-gguf:blk.41.attn_output.weight, torch.bfloat16 --> F16, shape = {8192, 3840}
|
| 526 |
+
INFO:hf-to-gguf:blk.41.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {512}
|
| 527 |
+
INFO:hf-to-gguf:blk.41.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 8192}
|
| 528 |
+
INFO:hf-to-gguf:blk.42.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 529 |
+
INFO:hf-to-gguf:blk.42.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 530 |
+
INFO:hf-to-gguf:blk.42.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 531 |
+
INFO:hf-to-gguf:blk.42.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 532 |
+
INFO:hf-to-gguf:blk.42.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 533 |
+
INFO:hf-to-gguf:blk.42.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 534 |
+
INFO:hf-to-gguf:blk.42.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 535 |
+
INFO:hf-to-gguf:blk.42.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 536 |
+
INFO:hf-to-gguf:blk.42.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 537 |
+
INFO:hf-to-gguf:blk.42.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 538 |
+
INFO:hf-to-gguf:blk.42.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 539 |
+
INFO:hf-to-gguf:blk.42.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 540 |
+
INFO:hf-to-gguf:blk.42.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 541 |
+
INFO:hf-to-gguf:blk.42.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 542 |
+
INFO:hf-to-gguf:blk.43.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 543 |
+
INFO:hf-to-gguf:blk.43.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 544 |
+
INFO:hf-to-gguf:blk.43.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 545 |
+
INFO:hf-to-gguf:blk.43.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 546 |
+
INFO:hf-to-gguf:blk.43.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 547 |
+
INFO:hf-to-gguf:blk.43.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 548 |
+
INFO:hf-to-gguf:blk.43.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 549 |
+
INFO:hf-to-gguf:blk.43.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 550 |
+
INFO:hf-to-gguf:blk.43.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 551 |
+
INFO:hf-to-gguf:blk.43.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 552 |
+
INFO:hf-to-gguf:blk.43.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 553 |
+
INFO:hf-to-gguf:blk.43.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 554 |
+
INFO:hf-to-gguf:blk.43.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 555 |
+
INFO:hf-to-gguf:blk.43.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 556 |
+
INFO:hf-to-gguf:blk.44.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 557 |
+
INFO:hf-to-gguf:blk.44.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 558 |
+
INFO:hf-to-gguf:blk.44.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 559 |
+
INFO:hf-to-gguf:blk.44.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 560 |
+
INFO:hf-to-gguf:blk.44.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 561 |
+
INFO:hf-to-gguf:blk.44.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 562 |
+
INFO:hf-to-gguf:blk.44.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 563 |
+
INFO:hf-to-gguf:blk.44.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 564 |
+
INFO:hf-to-gguf:blk.44.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 565 |
+
INFO:hf-to-gguf:blk.44.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 566 |
+
INFO:hf-to-gguf:blk.44.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 567 |
+
INFO:hf-to-gguf:blk.44.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 568 |
+
INFO:hf-to-gguf:blk.44.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 569 |
+
INFO:hf-to-gguf:blk.44.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 570 |
+
INFO:hf-to-gguf:blk.45.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 571 |
+
INFO:hf-to-gguf:blk.45.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 572 |
+
INFO:hf-to-gguf:blk.45.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 573 |
+
INFO:hf-to-gguf:blk.45.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 574 |
+
INFO:hf-to-gguf:blk.45.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 575 |
+
INFO:hf-to-gguf:blk.45.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 576 |
+
INFO:hf-to-gguf:blk.45.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 577 |
+
INFO:hf-to-gguf:blk.45.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 578 |
+
INFO:hf-to-gguf:blk.45.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 579 |
+
INFO:hf-to-gguf:blk.45.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 580 |
+
INFO:hf-to-gguf:blk.45.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 581 |
+
INFO:hf-to-gguf:blk.45.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 582 |
+
INFO:hf-to-gguf:blk.45.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 583 |
+
INFO:hf-to-gguf:blk.45.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 584 |
+
INFO:hf-to-gguf:blk.46.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 585 |
+
INFO:hf-to-gguf:blk.46.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 586 |
+
INFO:hf-to-gguf:blk.46.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 587 |
+
INFO:hf-to-gguf:blk.46.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 588 |
+
INFO:hf-to-gguf:blk.46.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 589 |
+
INFO:hf-to-gguf:blk.46.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 590 |
+
INFO:hf-to-gguf:blk.46.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 591 |
+
INFO:hf-to-gguf:blk.46.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 592 |
+
INFO:hf-to-gguf:blk.46.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 593 |
+
INFO:hf-to-gguf:blk.46.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 594 |
+
INFO:hf-to-gguf:blk.46.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 595 |
+
INFO:hf-to-gguf:blk.46.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 596 |
+
INFO:hf-to-gguf:blk.46.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 597 |
+
INFO:hf-to-gguf:blk.46.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 598 |
+
INFO:hf-to-gguf:blk.47.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 599 |
+
INFO:hf-to-gguf:blk.47.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 600 |
+
INFO:hf-to-gguf:blk.47.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 601 |
+
INFO:hf-to-gguf:blk.47.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 602 |
+
INFO:hf-to-gguf:blk.47.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 603 |
+
INFO:hf-to-gguf:blk.47.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 604 |
+
INFO:hf-to-gguf:blk.47.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 605 |
+
INFO:hf-to-gguf:blk.47.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 606 |
+
INFO:hf-to-gguf:blk.47.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {512}
|
| 607 |
+
INFO:hf-to-gguf:blk.47.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 512}
|
| 608 |
+
INFO:hf-to-gguf:blk.47.attn_output.weight, torch.bfloat16 --> F16, shape = {8192, 3840}
|
| 609 |
+
INFO:hf-to-gguf:blk.47.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {512}
|
| 610 |
+
INFO:hf-to-gguf:blk.47.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 8192}
|
| 611 |
+
INFO:hf-to-gguf:blk.5.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 612 |
+
INFO:hf-to-gguf:blk.5.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 613 |
+
INFO:hf-to-gguf:blk.5.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 614 |
+
INFO:hf-to-gguf:blk.5.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 615 |
+
INFO:hf-to-gguf:blk.5.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 616 |
+
INFO:hf-to-gguf:blk.5.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 617 |
+
INFO:hf-to-gguf:blk.5.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 618 |
+
INFO:hf-to-gguf:blk.5.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 619 |
+
INFO:hf-to-gguf:blk.5.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {512}
|
| 620 |
+
INFO:hf-to-gguf:blk.5.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 512}
|
| 621 |
+
INFO:hf-to-gguf:blk.5.attn_output.weight, torch.bfloat16 --> F16, shape = {8192, 3840}
|
| 622 |
+
INFO:hf-to-gguf:blk.5.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {512}
|
| 623 |
+
INFO:hf-to-gguf:blk.5.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 8192}
|
| 624 |
+
INFO:hf-to-gguf:blk.6.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 625 |
+
INFO:hf-to-gguf:blk.6.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 626 |
+
INFO:hf-to-gguf:blk.6.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 627 |
+
INFO:hf-to-gguf:blk.6.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 628 |
+
INFO:hf-to-gguf:blk.6.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 629 |
+
INFO:hf-to-gguf:blk.6.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 630 |
+
INFO:hf-to-gguf:blk.6.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 631 |
+
INFO:hf-to-gguf:blk.6.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 632 |
+
INFO:hf-to-gguf:blk.6.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 633 |
+
INFO:hf-to-gguf:blk.6.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 634 |
+
INFO:hf-to-gguf:blk.6.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 635 |
+
INFO:hf-to-gguf:blk.6.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 636 |
+
INFO:hf-to-gguf:blk.6.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 637 |
+
INFO:hf-to-gguf:blk.6.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 638 |
+
INFO:hf-to-gguf:blk.7.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 639 |
+
INFO:hf-to-gguf:blk.7.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 640 |
+
INFO:hf-to-gguf:blk.7.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 641 |
+
INFO:hf-to-gguf:blk.7.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 642 |
+
INFO:hf-to-gguf:blk.7.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 643 |
+
INFO:hf-to-gguf:blk.7.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 644 |
+
INFO:hf-to-gguf:blk.7.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 645 |
+
INFO:hf-to-gguf:blk.7.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 646 |
+
INFO:hf-to-gguf:blk.7.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 647 |
+
INFO:hf-to-gguf:blk.7.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 648 |
+
INFO:hf-to-gguf:blk.7.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 649 |
+
INFO:hf-to-gguf:blk.7.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 650 |
+
INFO:hf-to-gguf:blk.7.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 651 |
+
INFO:hf-to-gguf:blk.7.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 652 |
+
INFO:hf-to-gguf:blk.8.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 653 |
+
INFO:hf-to-gguf:blk.8.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 654 |
+
INFO:hf-to-gguf:blk.8.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 655 |
+
INFO:hf-to-gguf:blk.8.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 656 |
+
INFO:hf-to-gguf:blk.8.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 657 |
+
INFO:hf-to-gguf:blk.8.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 658 |
+
INFO:hf-to-gguf:blk.8.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 659 |
+
INFO:hf-to-gguf:blk.8.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 660 |
+
INFO:hf-to-gguf:blk.8.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 661 |
+
INFO:hf-to-gguf:blk.8.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 662 |
+
INFO:hf-to-gguf:blk.8.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 663 |
+
INFO:hf-to-gguf:blk.8.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 664 |
+
INFO:hf-to-gguf:blk.8.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 665 |
+
INFO:hf-to-gguf:blk.8.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 666 |
+
INFO:hf-to-gguf:blk.9.attn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 667 |
+
INFO:hf-to-gguf:blk.9.layer_output_scale.weight, torch.bfloat16 --> F32, shape = {1}
|
| 668 |
+
INFO:hf-to-gguf:blk.9.ffn_down.weight, torch.bfloat16 --> F16, shape = {15360, 3840}
|
| 669 |
+
INFO:hf-to-gguf:blk.9.ffn_gate.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 670 |
+
INFO:hf-to-gguf:blk.9.ffn_up.weight, torch.bfloat16 --> F16, shape = {3840, 15360}
|
| 671 |
+
INFO:hf-to-gguf:blk.9.post_attention_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 672 |
+
INFO:hf-to-gguf:blk.9.post_ffw_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 673 |
+
INFO:hf-to-gguf:blk.9.ffn_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 674 |
+
INFO:hf-to-gguf:blk.9.attn_k_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 675 |
+
INFO:hf-to-gguf:blk.9.attn_k.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 676 |
+
INFO:hf-to-gguf:blk.9.attn_output.weight, torch.bfloat16 --> F16, shape = {4096, 3840}
|
| 677 |
+
INFO:hf-to-gguf:blk.9.attn_q_norm.weight, torch.bfloat16 --> F32, shape = {256}
|
| 678 |
+
INFO:hf-to-gguf:blk.9.attn_q.weight, torch.bfloat16 --> F16, shape = {3840, 4096}
|
| 679 |
+
INFO:hf-to-gguf:blk.9.attn_v.weight, torch.bfloat16 --> F16, shape = {3840, 2048}
|
| 680 |
+
INFO:hf-to-gguf:output_norm.weight, torch.bfloat16 --> F32, shape = {3840}
|
| 681 |
+
INFO:hf-to-gguf:Set meta model
|
| 682 |
+
INFO:hf-to-gguf:Set model parameters
|
| 683 |
+
INFO:hf-to-gguf:gguf: context length = 262144
|
| 684 |
+
INFO:hf-to-gguf:gguf: embedding length = 3840
|
| 685 |
+
INFO:hf-to-gguf:gguf: feed forward length = 15360
|
| 686 |
+
INFO:hf-to-gguf:gguf: head count = 16
|
| 687 |
+
INFO:hf-to-gguf:gguf: key-value head count = 8
|
| 688 |
+
WARNING:hf-to-gguf:Unknown RoPE type: proportional
|
| 689 |
+
INFO:hf-to-gguf:gguf: rope scaling type = NONE
|
| 690 |
+
INFO:hf-to-gguf:gguf: rope theta = 1000000.0
|
| 691 |
+
INFO:hf-to-gguf:gguf: rope theta swa = 10000.0
|
| 692 |
+
INFO:hf-to-gguf:gguf: rms norm epsilon = 1e-06
|
| 693 |
+
INFO:hf-to-gguf:gguf: file type = 1
|
| 694 |
+
WARNING:gguf.gguf_writer:Duplicated key name 'gemma4.context_length', overwriting it with new value 262144 of type UINT32
|
| 695 |
+
WARNING:gguf.gguf_writer:Duplicated key name 'gemma4.attention.head_count', overwriting it with new value 16 of type UINT32
|
| 696 |
+
WARNING:gguf.gguf_writer:Duplicated key name 'gemma4.attention.layer_norm_rms_epsilon', overwriting it with new value 1e-06 of type FLOAT32
|
| 697 |
+
WARNING:gguf.gguf_writer:Duplicated key name 'gemma4.attention.key_length', overwriting it with new value 256 of type UINT32
|
| 698 |
+
WARNING:gguf.gguf_writer:Duplicated key name 'gemma4.attention.value_length', overwriting it with new value 256 of type UINT32
|
| 699 |
+
WARNING:gguf.gguf_writer:Duplicated key name 'gemma4.rope.freq_base', overwriting it with new value 1000000.0 of type FLOAT32
|
| 700 |
+
WARNING:gguf.gguf_writer:Duplicated key name 'gemma4.attention.head_count_kv', overwriting it with new value 8 of type UINT32
|
| 701 |
+
WARNING:gguf.gguf_writer:Duplicated key name 'gemma4.attention.key_length', overwriting it with new value 512 of type UINT32
|
| 702 |
+
WARNING:gguf.gguf_writer:Duplicated key name 'gemma4.attention.value_length', overwriting it with new value 512 of type UINT32
|
| 703 |
+
WARNING:gguf.gguf_writer:Duplicated key name 'gemma4.attention.head_count_kv', overwriting it with new value [8, 8, 8, 8, 8, 1, 8, 8, 8, 8, 8, 1, 8, 8, 8, 8, 8, 1, 8, 8, 8, 8, 8, 1, 8, 8, 8, 8, 8, 1, 8, 8, 8, 8, 8, 1, 8, 8, 8, 8, 8, 1, 8, 8, 8, 8, 8, 1] of type ARRAY
|
| 704 |
+
INFO:hf-to-gguf:Set model quantization version
|
| 705 |
+
INFO:hf-to-gguf:Set model tokenizer
|
| 706 |
+
/usr/local/lib/python3.12/dist-packages/sklearn/utils/_param_validation.py:14: UserWarning: A NumPy version >=2.0.0 and <2.8.0 is required for this version of SciPy (detected version 1.26.4)
|
| 707 |
+
from scipy.sparse import csr_array, issparse
|
| 708 |
+
/usr/local/lib/python3.12/dist-packages/scipy/sparse/_sputils.py:17: FutureWarning: In the future `np.long` will be defined as the corresponding NumPy scalar.
|
| 709 |
+
np.uintc, np.long, np.ulong, np.longlong, np.ulonglong,
|
| 710 |
+
/usr/local/lib/python3.12/dist-packages/scipy/sparse/_sputils.py:17: FutureWarning: In the future `np.long` will be defined as the corresponding NumPy scalar.
|
| 711 |
+
np.uintc, np.long, np.ulong, np.longlong, np.ulonglong,
|
| 712 |
+
Traceback (most recent call last):
|
| 713 |
+
File "/home/ubuntu/ladder/llama.cpp/gguf-py/gguf/vocab.py", line 574, in __init__
|
| 714 |
+
from transformers import AutoTokenizer
|
| 715 |
+
File "/home/ubuntu/.local/lib/python3.12/site-packages/transformers/utils/import_utils.py", line 2317, in __getattr__
|
| 716 |
+
module = self._get_module(self._class_to_module[name])
|
| 717 |
+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| 718 |
+
File "/home/ubuntu/.local/lib/python3.12/site-packages/transformers/utils/import_utils.py", line 2347, in _get_module
|
| 719 |
+
raise e
|
| 720 |
+
File "/home/ubuntu/.local/lib/python3.12/site-packages/transformers/utils/import_utils.py", line 2345, in _get_module
|
| 721 |
+
return importlib.import_module("." + module_name, self.__name__)
|
| 722 |
+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| 723 |
+
File "/usr/lib/python3.12/importlib/__init__.py", line 90, in import_module
|
| 724 |
+
return _bootstrap._gcd_import(name[level:], package, level)
|
| 725 |
+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| 726 |
+
File "/home/ubuntu/.local/lib/python3.12/site-packages/transformers/models/auto/tokenization_auto.py", line 40, in <module>
|
| 727 |
+
from .auto_factory import _LazyAutoMapping
|
| 728 |
+
File "/home/ubuntu/.local/lib/python3.12/site-packages/transformers/models/auto/auto_factory.py", line 43, in <module>
|
| 729 |
+
from ...generation import GenerationMixin
|
| 730 |
+
ImportError: cannot import name 'GenerationMixin' from 'transformers.generation' (/home/ubuntu/.local/lib/python3.12/site-packages/transformers/generation/__init__.py). Did you mean: 'GenerationMode'?
|
| 731 |
+
|
| 732 |
+
The above exception was the direct cause of the following exception:
|
| 733 |
+
|
| 734 |
+
Traceback (most recent call last):
|
| 735 |
+
File "/home/ubuntu/ladder/llama.cpp/convert_hf_to_gguf.py", line 296, in <module>
|
| 736 |
+
main()
|
| 737 |
+
File "/home/ubuntu/ladder/llama.cpp/convert_hf_to_gguf.py", line 290, in main
|
| 738 |
+
model_instance.write()
|
| 739 |
+
File "/home/ubuntu/ladder/llama.cpp/conversion/base.py", line 1026, in write
|
| 740 |
+
self.prepare_metadata(vocab_only=False)
|
| 741 |
+
File "/home/ubuntu/ladder/llama.cpp/conversion/base.py", line 1193, in prepare_metadata
|
| 742 |
+
self.set_vocab()
|
| 743 |
+
File "/home/ubuntu/ladder/llama.cpp/conversion/gemma.py", line 626, in set_vocab
|
| 744 |
+
vocab = gguf.LlamaHfVocab(self.dir_model)
|
| 745 |
+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| 746 |
+
File "/home/ubuntu/ladder/llama.cpp/gguf-py/gguf/vocab.py", line 576, in __init__
|
| 747 |
+
raise ImportError(
|
| 748 |
+
ImportError: To use LlamaHfVocab, please install the `transformers` package. You can install it with `pip install transformers`.
|
manifest.jsonl
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{"quant":"Q2_K","bytes":4830147840,"sha256":"77e66dd8895defb57d890dfaa3b60c0299ea9e1dbc46795913610b179caf7a40"}
|
| 2 |
+
{"quant":"Q3_K_S","bytes":5528229120,"sha256":"11e173aa6e645c86ffb02db83947156e9471dc863ce48cd6706769f594962a5a"}
|
| 3 |
+
{"quant":"Q3_K_M","bytes":6087087360,"sha256":"78fde8c567ba48a90a4d86587d2f55b2f81f8d680590b7f9b6e467b363434a06"}
|
| 4 |
+
{"quant":"Q4_0","bytes":6975878400,"sha256":"12a5a4a8b575cc005d1a06779e3d6d61e54adeaec41a926fc36307dedf2f4e2d"}
|
| 5 |
+
{"quant":"Q4_K_S","bytes":7024047360,"sha256":"79e9eefb40c341f19d8a3e9a5e820ec00358fce5125f19b7fd6a7aad078d22c6"}
|
| 6 |
+
{"quant":"Q4_K_M","bytes":7381382400,"sha256":"279adedd4bf41feee54045210c7860fd6cde61cca4b87951e909e8163871b019"}
|
| 7 |
+
{"quant":"Q5_K_S","bytes":8338371840,"sha256":"2cae74b39cc4bbe4e2f8cc19d396537677db35fc8578f82184ff1958c74e98ba"}
|
| 8 |
+
{"quant":"Q5_K_M","bytes":8547267840,"sha256":"3b1295df732ae7a3aa20c03ec4ce1a0c6763c450750472f39ac478755bf2a4ba"}
|
| 9 |
+
{"quant":"Q6_K","bytes":9786021120,"sha256":"dd188a2825b4f755dac5798e1b958e8cfef91a3c3a2e2c7636427d30f24f2ac4"}
|
| 10 |
+
{"quant":"Q8_0","bytes":12669646080,"sha256":"38e197b511db68fbf2f38bc1d85500aa73d4c41ea06a8cfd2cac7bf3b23fdf76"}
|
smoke.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
not smoked
|