Views
No views yet
| File | Size | Description |
|---|---|---|
qwen3-omni-30B-Q8_0.gguf | 31GB | Main LLM (Q8_0 quantization) |
mmproj-qwen3-omni-30B-F16-fixed.gguf | 2.3GB | Vision projector (F16) |
1# Clone the fork with Qwen3-Omni support
2git clone https://github.com/phnxsystms/llama.cpp.git
3cd llama.cpp
4git checkout qwen3omni
5
6# Build
7mkdir build && cd build
8cmake .. -DGGML_CUDA=ON
9cmake --build . -j
10
11# Run text inference
12./bin/llama-cli -m qwen3-omni-30B-Q8_0.gguf -p "Hello!" -ngl 99
13
14# Run multimodal inference
15./bin/llama-mtmd-cli -m qwen3-omni-30B-Q8_0.gguf --mmproj mmproj-qwen3-omni-30B-F16-fixed.gguf --image your_image.jpg -p "Describe this image"qwen3omni