Instructions to use jukofyork/Qwen3-Coder-Instruct-DRAFT-0.75B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use jukofyork/Qwen3-Coder-Instruct-DRAFT-0.75B-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="jukofyork/Qwen3-Coder-Instruct-DRAFT-0.75B-GGUF", filename="Qwen3-Coder-Instruct-DRAFT-0.75B-128k-Q4_0.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use jukofyork/Qwen3-Coder-Instruct-DRAFT-0.75B-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf jukofyork/Qwen3-Coder-Instruct-DRAFT-0.75B-GGUF:Q4_0 # Run inference directly in the terminal: llama-cli -hf jukofyork/Qwen3-Coder-Instruct-DRAFT-0.75B-GGUF:Q4_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf jukofyork/Qwen3-Coder-Instruct-DRAFT-0.75B-GGUF:Q4_0 # Run inference directly in the terminal: llama-cli -hf jukofyork/Qwen3-Coder-Instruct-DRAFT-0.75B-GGUF:Q4_0
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf jukofyork/Qwen3-Coder-Instruct-DRAFT-0.75B-GGUF:Q4_0 # Run inference directly in the terminal: ./llama-cli -hf jukofyork/Qwen3-Coder-Instruct-DRAFT-0.75B-GGUF:Q4_0
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf jukofyork/Qwen3-Coder-Instruct-DRAFT-0.75B-GGUF:Q4_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf jukofyork/Qwen3-Coder-Instruct-DRAFT-0.75B-GGUF:Q4_0
Use Docker
docker model run hf.co/jukofyork/Qwen3-Coder-Instruct-DRAFT-0.75B-GGUF:Q4_0
- LM Studio
- Jan
- Ollama
How to use jukofyork/Qwen3-Coder-Instruct-DRAFT-0.75B-GGUF with Ollama:
ollama run hf.co/jukofyork/Qwen3-Coder-Instruct-DRAFT-0.75B-GGUF:Q4_0
- Unsloth Studio new
How to use jukofyork/Qwen3-Coder-Instruct-DRAFT-0.75B-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for jukofyork/Qwen3-Coder-Instruct-DRAFT-0.75B-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for jukofyork/Qwen3-Coder-Instruct-DRAFT-0.75B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for jukofyork/Qwen3-Coder-Instruct-DRAFT-0.75B-GGUF to start chatting
- Docker Model Runner
How to use jukofyork/Qwen3-Coder-Instruct-DRAFT-0.75B-GGUF with Docker Model Runner:
docker model run hf.co/jukofyork/Qwen3-Coder-Instruct-DRAFT-0.75B-GGUF:Q4_0
- Lemonade
How to use jukofyork/Qwen3-Coder-Instruct-DRAFT-0.75B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull jukofyork/Qwen3-Coder-Instruct-DRAFT-0.75B-GGUF:Q4_0
Run and chat with the model
lemonade run user.Qwen3-Coder-Instruct-DRAFT-0.75B-GGUF-Q4_0
List all available models
lemonade list
A 0.75B parameter draft (speculative decoding) model for use with Qwen3-Coder-480B-A35B-Instruct.
I've included the Q4_0 quants for 4 different YaRN extended context lengths:
- Qwen3-Coder-Instruct-DRAFT-0.75B-32k-Q4_0.gguf
- Qwen3-Coder-Instruct-DRAFT-0.75B-64k-Q4_0.gguf
- Qwen3-Coder-Instruct-DRAFT-0.75B-128k-Q4_0.gguf
- Qwen3-Coder-Instruct-DRAFT-0.75B-256k-Q4_0.gguf
NOTE: Because llama.cpp uses "static-YaRN" the scaling factor remains constant regardless of input length:
- Only use the YaRN extended versions when processing long contexts is required.
- Use the smallest YaRN-extension possible.
How these were created
1. The initial model was created from Qwen/Qwen3-0.6B using transplant-vocab:
> python3 transplant_vocab.py Qwen3-0.6B Qwen3-Coder-480B-A35B-Instruct Qwen3-Coder-Instruct-DRAFT-0.75B
Loading config from 'Qwen3-0.6B'... Done.
Loading config from 'Qwen3-Coder-480B-A35B-Instruct'... Done.
Loading tokenizer from 'Qwen3-0.6B'... Done.
Loading tokenizer from 'Qwen3-Coder-480B-A35B-Instruct'... Done.
Loading model from 'Qwen3-0.6B'... Done.
Input model configuration:
- Target vocabulary size : 151936 (used = 151669, unused = 267)
- Donor vocabulary size : 151936
- Donor num layers : 28 (tied embeddings = True)
- Donor hidden size : 1024
- Donor attention heads : 16
- Donor intermediate size : 3072 (ratio = 1:3.0)
- Donor total parameters : 596049920 (0.60B)
-- Embedding parameters : 155582464 (0.16B)
-- Non-embedding parameters : 440467456 (0.44B)
Processing 3 automatic token overrides:
β 'bos_token_id' : Not found for target model
β 'eos_token_id' : 151645 '<|im_end|>' β [151645] '<|im_end|>'
β 'pad_token_id' : 151643 '<|endoftext|>' β [151643] '<|endoftext|>'
NOTE: Using an "untied" copy of 'embed_tokens.weight' as new 'lm_head.weight' tensor...
Transplanting tokens: 100%|βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ| 151669/151669 [00:40<00:00, 3751.23token/s]
Transplant mappings:
- 1 to 1 : 149829 (99%)
- 2 to 1 : 816 (0.54%)
- 3 to 1 : 506 (0.33%)
- 4 to 1 : 331 (0.22%)
- 5 to 1 : 118 (0.078%)
- 6 to 1 : 38 (0.025%)
- 7 to 1 : 22 (0.015%)
- 8 to 1 : 8 (0.0053%)
- 9 to 1 : 1 (0.00066%)
Head initialized with:
- Copies : 149829 (99%)
- Means : 1840 (1.2%)
- Zeros : 267 (0.18%)
Output model configuration:
- Output vocabulary size : 151936
- Output num layers : 28 (tied embeddings = False)
- Output hidden size : 1024
- Output attention heads : 16
- Output intermediate size : 3072 (ratio = 1:3.0)
- Output total parameters : 751632384 (0.75B)
-- Embedding parameters : 311164928 (0.31B)
-- Non-embedding parameters : 440467456 (0.44B)
Saving model and tokenizer to 'Qwen3-Coder-Instruct-DRAFT-0.75B' folder
Patching 'torch_dtype' in 'Qwen3-Coder-Instruct-DRAFT-0.75B/config.json' based on actual saved tensors
- Updated 'torch_dtype' to 'bfloat16' based on actual tensor dtype
Operation completed successfully (ignore any 'segmentation fault' that follows!!!)
NOTE: No subsequent fine-tuning has been performed (due to the 99% "1 to 1" mapping...).
2. The context was extended using YaRN:
"max_position_embeddings": 65536,
...
"rope_scaling": {
"factor": 2.0,
"original_max_position_embeddings": 32768,
"type": "yarn"
},
3. Converted and quantized:
./llama.cpp/convert_hf_to_gguf.py --outtype auto --outfile Qwen3-Coder-Instruct-DRAFT-0.75B-64k-BF16.gguf Qwen3-Coder-Instruct-DRAFT-0.75B
./llama.cpp/build/bin/llama-quantize Qwen3-Coder-Instruct-DRAFT-0.75B-64k-BF16.gguf Qwen3-Coder-Instruct-DRAFT-0.75B-64k-Q4_0.gguf Q4_0 44
See here for information on how to patch the GGUF files for other context lengths.
- Downloads last month
- 464
4-bit