Views
No views yet
llama.cpp.| File Name | Size (MB) | Precision | Type | Description |
|---|---|---|---|---|
qwen3.5-0.8b-q8_0.gguf | ~890 MB | Q8_0 (8-bit) | Text LLM | Standard quantized 8-bit text GGUF model. |
llama.cpp locally, run:1git clone https://github.com/ggml-org/llama.cpp
2cd llama.cpp
3cmake -B build
4cmake --build build --config Release -jllama.cpp:1./build/bin/llama-cli \
2 -hf Kelexine/Qwen3.5-0.8B-GGUF \
3 -p "You are a helpful assistant. Write a short poem about coding."pip install llama-cpp-python1from llama_cpp import Llama
2
3llm = Llama(
4 model_path="qwen3.5-0.8b-q8_0.gguf",
5 n_ctx=2048
6)
7
8response = llm.create_chat_completion(
9 messages=[
10 {"role": "user", "content": "Explain quantizing neural networks in simple terms."}
11 ]
12)
13print(response["choices"][0]["message"]["content"])