Instructions to use dranger003/c4ai-command-r-plus-iMat.GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use dranger003/c4ai-command-r-plus-iMat.GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="dranger003/c4ai-command-r-plus-iMat.GGUF", filename="ggml-c4ai-command-r-plus-f16-00001-of-00005.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use dranger003/c4ai-command-r-plus-iMat.GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf dranger003/c4ai-command-r-plus-iMat.GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf dranger003/c4ai-command-r-plus-iMat.GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf dranger003/c4ai-command-r-plus-iMat.GGUF:Q4_K_M # Run inference directly in the terminal: llama-cli -hf dranger003/c4ai-command-r-plus-iMat.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 dranger003/c4ai-command-r-plus-iMat.GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf dranger003/c4ai-command-r-plus-iMat.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 dranger003/c4ai-command-r-plus-iMat.GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf dranger003/c4ai-command-r-plus-iMat.GGUF:Q4_K_M
Use Docker
docker model run hf.co/dranger003/c4ai-command-r-plus-iMat.GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use dranger003/c4ai-command-r-plus-iMat.GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "dranger003/c4ai-command-r-plus-iMat.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": "dranger003/c4ai-command-r-plus-iMat.GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/dranger003/c4ai-command-r-plus-iMat.GGUF:Q4_K_M
- Ollama
How to use dranger003/c4ai-command-r-plus-iMat.GGUF with Ollama:
ollama run hf.co/dranger003/c4ai-command-r-plus-iMat.GGUF:Q4_K_M
- Unsloth Studio new
How to use dranger003/c4ai-command-r-plus-iMat.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 dranger003/c4ai-command-r-plus-iMat.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 dranger003/c4ai-command-r-plus-iMat.GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for dranger003/c4ai-command-r-plus-iMat.GGUF to start chatting
- Docker Model Runner
How to use dranger003/c4ai-command-r-plus-iMat.GGUF with Docker Model Runner:
docker model run hf.co/dranger003/c4ai-command-r-plus-iMat.GGUF:Q4_K_M
- Lemonade
How to use dranger003/c4ai-command-r-plus-iMat.GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull dranger003/c4ai-command-r-plus-iMat.GGUF:Q4_K_M
Run and chat with the model
lemonade run user.c4ai-command-r-plus-iMat.GGUF-Q4_K_M
List all available models
lemonade list
fail on 104b-iq2_xxs.gguf with llama.cpp
main: build = 2632 (b73e564b)
main: built with Apple clang version 15.0.0 (clang-1500.3.9.4) for arm64-apple-darwin23.4.0
main: seed = 1712819802
...
llm_load_print_meta: model ftype = IQ2_XXS - 2.0625 bpw
llm_load_print_meta: model params = 103.81 B
llm_load_print_meta: model size = 26.64 GiB (2.20 BPW)
llm_load_print_meta: general.name = 313aab747f8c3aefdd411b1f6a5a555dd421d9e8
llm_load_print_meta: BOS token = 5 ''
llm_load_print_meta: EOS token = 255001 '<|END_OF_TURN_TOKEN|>'
llm_load_print_meta: PAD token = 0 ''
llm_load_print_meta: LF token = 136 'Ä'
llm_load_tensors: ggml ctx size = 0.49 MiB
llama_model_load: error loading model: done_getting_tensors: wrong number of tensors; expected 642, got 514
llama_load_model_from_file: failed to load model
llama_init_from_gpt_params: error: failed to load model '~/c4ai-command-r-plus-iMat.GGUF/ggml-c4ai-command-r-plus-104b-iq2_xxs.gguf'
main: error: unable to load model
The test was done on the latest master version yesterday, it seems not merged yet?
https://github.com/ggerganov/llama.cpp/pull/6491
@telehan Take a look at this post -> https://www.reddit.com/r/LocalLLaMA/comments/1bymeyw/command_r_plus_104b_working_with_ollama_using/
This has nothing to do with the weights being trained using an importance matrix or not. This has to do with ollama using llama.cpp has a backend, so you can use the latest ollama commit but that doesn't use the latest llama.cpp commit. Hopefully this help.