Ornstein3.6-35B-A3B-RYS-Q6_K.gguf throws llama-cli error: "missing tensor 'blk.11.attn_q.weight'"

#1
by SkyMind - opened

Attempting to run with llama-cli:

create_tensor: loading tensor blk.10.ffn_up_exps.weight
create_tensor: loading tensor blk.10.ffn_gate_inp_shexp.weight
create_tensor: loading tensor blk.10.ffn_gate_shexp.weight
create_tensor: loading tensor blk.10.ffn_up_shexp.weight
create_tensor: loading tensor blk.10.ffn_down_shexp.weight
create_tensor: loading tensor blk.11.attn_norm.weight
create_tensor: loading tensor blk.11.post_attention_norm.weight
llama_model_load: error loading model: missing tensor 'blk.11.attn_q.weight'
llama_model_load_from_file_impl: failed to load model
common_init_from_params: failed to load model './Ornstein3.6-35B-A3B-RYS-Q6_K.gguf'
srv    load_model: failed to load model, './Ornstein3.6-35B-A3B-RYS-Q6_K.gguf'
 
Failed to load the model

~/code/llama.cpp/gguf-py/gguf/scripts/gguf_dump.py Ornstein3.6-35B-A3B-RYS-Q6_K.gguf | grep "attn_q.weight"

yields:

INFO:gguf-dump:* Loading: Ornstein3.6-35B-A3B-RYS-Q6_K.gguf
     65:   16777216 |  2048,  8192,     1,     1 | Q6_K    | blk.3.attn_q.weight
    138:   16777216 |  2048,  8192,     1,     1 | Q6_K    | blk.7.attn_q.weight
    230:   16777216 |  2048,  8192,     1,     1 | Q6_K    | blk.12.attn_q.weight
    303:   16777216 |  2048,  8192,     1,     1 | Q6_K    | blk.16.attn_q.weight
    376:   16777216 |  2048,  8192,     1,     1 | Q6_K    | blk.20.attn_q.weight
    449:   16777216 |  2048,  8192,     1,     1 | Q6_K    | blk.24.attn_q.weight
    522:   16777216 |  2048,  8192,     1,     1 | Q6_K    | blk.28.attn_q.weight
    595:   16777216 |  2048,  8192,     1,     1 | Q6_K    | blk.32.attn_q.weight
    668:   16777216 |  2048,  8192,     1,     1 | Q6_K    | blk.36.attn_q.weight
    741:   16777216 |  2048,  8192,     1,     1 | Q6_K    | blk.40.attn_q.weight

I saw that other RYS models use a forked llama.cpp. Using that,

'''~/code/DJLougen/llama.cpp-rys-qwen35/build/bin/llama-cli -m ./Ornstein3.6-35B-A3B-RYS-Q6_K.gguf --min-p 0.01 --temp 1.0 --top-p 0.95 --top-k 20 -c 65536 -ngl 18```

still gives

Loading model... |llama_model_load: error loading model: missing tensor 'blk.11.attn_q.weight'
llama_model_load_from_file_impl: failed to load model

and the forked code gguf_dump.py output is unchanged.

Sign up or log in to comment