Views
No views yet
1# Install ModelScope
2pip install modelscope1# Download the model with SDK
2from modelscope import snapshot_download
3model_dir = snapshot_download('diodel/Qwen3.5-2B-Q4_K_M-GGUF')1# Download the model with Git
2git clone https://www.modelscope.cn/diodel/Qwen3.5-2B-Q4_K_M-GGUF.git# Build and start the service
./llama.cpp/build/bin/llama-server \
--model ./Qwen3.5-2B-Q4_K_M.gguf \
--ctx-size 2048 \
--host 0.0.0.0 \
--port 8000