Error on Ollama on CPU

#2
by mdeniz - opened

ollama run hf.co/FermionResearch/Neutrino-8B
Error: tensor "token_embd.weight" size overflow

Expected, sorry for the confusing error, this GGUF uses our custom FV5 tensor types (that's the sub-2-bit compression), which stock Ollama doesn't know yet. Two ways to run it today:

  1. build our llama.cpp fork (two commands, instructions in gguf/README.md) and use llama-completion, or build Ollama from source against the fork;
  2. skip GGUF entirely: pip install fermion-research && fermion chat --model fermionresearch/Neutrino-8B β€” one command, downloads and runs the native path. Upstreaming FV5 so stock Ollama works out of the box is on our roadmap.

Sign up or log in to comment