GGUF
imatrix
conversational

Which llama.cpp version?

#2
by MLDataScientist - opened

Hi,

Can you please mention which version of llama.cpp or fork of it supports this model? Can you please share a GitHub link? I want to ensure that mainline llama.cpp or some fork of it supports it before I download one of the quants. Thanks!

It runs in original llama cpp . No forks or any thing extra required .

All the M3 GGUFs (not only MoQ GGUFs) need a special version for now. I didn't check whether its merged or not, but I did this:

git clone https://github.com/ggml-org/llama.cpp
cd llama.cpp
git fetch origin pull/24523/head:minimax-m3
git checkout minimax-m3

I have the latest llama.cpp which includes that pull request now, and I get an error running yours, can you rebuild the GGUFs with the latest llama.cpp ?

0.00.466.052 I srv load_model: loading model '/root/.cache/huggingface/hub/models--kaitchup--MiniMax-M3-GGUF-MoQ/snapshots/a6875e7af86fc79eb33b3724ddd8bdac89e9a3d2/MoQ-3.0.gguf'
0.00.549.133 E llama_model_load: error loading model: error loading model hyperparameters: key not found in model: minimax-m3.attention.indexer.head_count
0.00.549.147 E llama_model_load_from_file_impl: failed to load model
0.00.549.694 E common_fit_params: encountered an error while trying to fit params to free device memory: failed to load model
0.00.617.393 E llama_model_load: error loading model: error loading model hyperparameters: key not found in model: minimax-m3.attention.indexer.head_count
0.00.617.407 E llama_model_load_from_file_impl: failed to load model
0.00.617.412 E cmn common_init_: failed to load model '/root/.cache/huggingface/hub/models--kaitchup--MiniMax-M3-GGUF-MoQ/snapshots/a6875e7af86fc79eb33b3724ddd8bdac89e9a3d2/MoQ-3.0.gguf'
0.00.617.416 E srv load_model: failed to load model, '/root/.cache/huggingface/hub/models--kaitchup--MiniMax-M3-GGUF-MoQ/snapshots/a6875e7af86fc79eb33b3724ddd8bdac89e9a3d2/MoQ-3.0.gguf'
0.00.617.418 I srv operator(): operator(): cleaning up before exit...
0.00.618.518 E srv llama_server: exiting due to model loading error

Sign up or log in to comment