6,265 Downloads Updated 1 month ago
ollama run bazobehram/qwen3.5-flash-27b
# qwen3.5-flash-27b (Ollama)
Fast-tuned Qwen3.5 27B profile for Ollama.
## Model
- Name: `bazobehram/qwen3.5-flash-27b`
- Base: Qwen3.5 27B (GGUF Q4_K_M)
- Size: ~16 GB
- Tuned runtime defaults:
- `num_ctx 4096`
- `num_batch 32`
- `temperature 0.6`
- `top_k 20`
- `top_p 0.95`
## Quick Start
```bash
ollama pull bazobehram/qwen3.5-flash-27b
ollama run bazobehram/qwen3.5-flash-27b "Write one sentence about Bitcoin."
curl http://localhost:11434/api/generate \
-H "Content-Type: application/json" \
-d '{
"model": "bazobehram/qwen3.5-flash-27b",
"prompt": "Write one sentence about Bitcoin.",
"stream": false
}'
”`