1,122 Downloads Updated 1 month ago
Updated 1 month ago
1 month ago
e816abc17165 Β· 960GB
Qwen3-Coder-480B is a massive 480 billion parameter Mixture of Experts (MoE) model, specifically designed for advanced code generation, understanding, and software development tasks. With 160 experts and 8 active per token (35B active parameters), it delivers unparalleled coding capabilities while maintaining computational efficiency.
Tag | Size | RAM Required | Description |
---|---|---|---|
q2-k |
163GB | ~170GB | Smallest, fastest inference |
q3-k-s |
193GB | ~200GB | Good balance for testing |
q4-k-m |
271GB | ~280GB | Recommended - best quality/size ratio |
q5-k-m |
318GB | ~330GB | High quality for critical tasks |
q6-k |
368GB | ~380GB | Maximum quality preservation |
# Recommended version (Q4_K_M)
ollama run richardyoung/qwen3-coder:q4-k-m "Write a Python web server with async support"
# Smallest version for testing (Q2_K)
ollama run richardyoung/qwen3-coder:q2-k "Explain the quicksort algorithm"
# High quality version (Q6_K)
ollama run richardyoung/qwen3-coder:q6-k "Implement a red-black tree in Rust"
ollama run richardyoung/qwen3-coder:q4-k-m "Create a React component for infinite scrolling with virtualization"
ollama run richardyoung/qwen3-coder:q4-k-m "Review this code for security vulnerabilities: [paste your code]"
ollama run richardyoung/qwen3-coder:q4-k-m "Implement Dijkstra's algorithm in Python with detailed comments"
ollama run richardyoung/qwen3-coder:q4-k-m "Convert this JavaScript function to Rust: [paste function]"
ollama run richardyoung/qwen3-coder:q4-k-m \
--temperature 0.7 \
--top-p 0.9 \
--top-k 20 \
--repeat-penalty 1.05 \
"Your prompt here"
# For larger codebases (up to 32K tokens)
ollama run richardyoung/qwen3-coder:q4-k-m \
--num-ctx 32768 \
"Analyze this codebase and suggest improvements"
This model follows the Qwen model license. Please refer to the original model repository for detailed licensing information.
Note: Due to the modelβs size, downloads may take considerable time. Ensure stable internet connection and sufficient storage before pulling.