Views
No views yet
1# run f16 version
2./minicpmv-cli -m ../MiniCPM-Llama3-V-2_5/model/model-8B-F16.gguf --mmproj ../MiniCPM-Llama3-V-2_5/mmproj-model-f16.gguf -c 4096 --temp 0.7 --top-p 0.8 --top-k 100 --repeat-penalty 1.05 --image xx.jpg -p "What is in the image?"
3
4# run quantized int4 version
5./minicpmv-cli -m ../MiniCPM-Llama3-V-2_5/model/ggml-model-Q4_K_M.gguf --mmproj ../MiniCPM-Llama3-V-2_5/mmproj-model-f16.gguf -c 4096 --temp 0.7 --top-p 0.8 --top-k 100 --repeat-penalty 1.05 --image xx.jpg -p "What is in the image?"
6
7# or run in interactive mode
8./minicpmv-cli -m ../MiniCPM-Llama3-V-2_5/model/ggml-model-Q4_K_M.gguf --mmproj ../MiniCPM-Llama3-V-2_5/mmproj-model-f16.gguf -c 4096 --temp 0.7 --top-p 0.8 --top-k 100 --repeat-penalty 1.05 --image xx.jpg -iwwe180/Llama3-13B-lingyang-v1 using llama.cpp via the ggml.ai's GGUF-my-repo space.
Refer to the original model card for more details on the model.1brew install llama.cpp
2llama --hf-repo wwe180/Llama3-13B-lingyang-v1-Q8_0-GGUF --hf-file Llama3-13B-lingyang-v1-q8_0.gguf -p "The meaning to life and the universe is"llama-server --hf-repo wwe180/Llama3-13B-lingyang-v1-Q8_0-GGUF --hf-file Llama3-13B-lingyang-v1-q8_0.gguf -c 2048git clone https://github.com/ggerganov/llama.cppLLAMA_CURL=1 flag along with other hardware-specific flags (for ex: LLAMA_CUDA=1 for Nvidia GPUs on Linux).cd llama.cpp && LLAMA_CURL=1 make./main --hf-repo wwe180/Llama3-13B-lingyang-v1-Q8_0-GGUF --hf-file Llama3-13B-lingyang-v1-q8_0.gguf -p "The meaning to life and the universe is"./server --hf-repo wwe180/Llama3-13B-lingyang-v1-Q8_0-GGUF --hf-file Llama3-13B-lingyang-v1-q8_0.gguf -c 2048