-
Notifications
You must be signed in to change notification settings - Fork 9.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error: llama_model_load: error loading model: failed to open ggml-bagel-2.8b-v0.2-q8_0.gguf #9656
Comments
Hi @vineel96, Is it possible that your model isn't in the root directory of I would suggest you try any of the following you double-check the location of your model, and try to run the program again. If that doesn't work, create a new branch, pull the changes from #5328 into your branch, and try to run the model again. Please let me know if this helps, and what went wrong if it didn't! |
Hi @manny-pi,
Is it possible to share steps to run mamba with llama.cpp or where to find the location of that model? |
@vineel96 You do not need to pull #5328, since it has been merged a while ago in the Basically, what I use to run Mamba is the following: First make sure you have a GGUF Mamba model and put it somewhere. (I prefer to use $ cd llama.cpp # assume the current directory from now on is a llama.cpp checkout
$ git branch --show-current # Note: I'm on the master branch
master
$ git pull --ff-only origin
$ mkdir build
$ cd build
$ cmake .. -DGGML_NATIVE=TRUE
$ make -j4 # of course you can use more
$ ./bin/llama-cli -m ~/Downloads/ggml-bagel-2.8b-v0.2-q8_0.gguf -p "Hello" # use the correct path for where you stored your model Note that you don't necessarily have to use
When you download files, where do they end up? In the shell, when using a command which accepts file names, you can use your |
@compilade, |
What happened?
Hello,
I have following error while running llama.cpp with mamba architecture:
Steps to reproduce:
Please help in providing steps to run llama.cpp with mamba architecture.
Name and Version
version: 2403 (39579d3)
built with cc (Ubuntu 12.3.0-1ubuntu1~22.04) 12.3.0 for aarch64-linux-gnu
What operating system are you seeing the problem on?
Linux
Relevant log output
No response
The text was updated successfully, but these errors were encountered: