Text Generation
GGUF
llama.cpp
imatrix
uncensored
qwen2
1.5b
coder
no-refusals
ollama
apache-2.0
domain-specialist
fableforge
nexus
Instructions to use King3Djbl/nexus-coder-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use King3Djbl/nexus-coder-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="King3Djbl/nexus-coder-GGUF", filename="nexus-coder-f16.gguf", )
output = llm( "Once upon a time,", max_tokens=512, echo=True ) print(output)
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use King3Djbl/nexus-coder-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf King3Djbl/nexus-coder-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf King3Djbl/nexus-coder-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf King3Djbl/nexus-coder-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf King3Djbl/nexus-coder-GGUF:Q4_K_M
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 King3Djbl/nexus-coder-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf King3Djbl/nexus-coder-GGUF:Q4_K_M
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 King3Djbl/nexus-coder-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf King3Djbl/nexus-coder-GGUF:Q4_K_M
Use Docker
docker model run hf.co/King3Djbl/nexus-coder-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use King3Djbl/nexus-coder-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "King3Djbl/nexus-coder-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "King3Djbl/nexus-coder-GGUF", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/King3Djbl/nexus-coder-GGUF:Q4_K_M
- Ollama
How to use King3Djbl/nexus-coder-GGUF with Ollama:
ollama run hf.co/King3Djbl/nexus-coder-GGUF:Q4_K_M
- Unsloth Studio
How to use King3Djbl/nexus-coder-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 King3Djbl/nexus-coder-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 King3Djbl/nexus-coder-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for King3Djbl/nexus-coder-GGUF to start chatting
- Atomic Chat new
- Docker Model Runner
How to use King3Djbl/nexus-coder-GGUF with Docker Model Runner:
docker model run hf.co/King3Djbl/nexus-coder-GGUF:Q4_K_M
- Lemonade
How to use King3Djbl/nexus-coder-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull King3Djbl/nexus-coder-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.nexus-coder-GGUF-Q4_K_M
List all available models
lemonade list
output = llm(
"Once upon a time,",
max_tokens=512,
echo=True
)
print(output)Quick Start
Ollama (11 sizes available)
# Recommended (941 MB) โ best quality/speed balance
ollama run fableforge-ai/nexus-coder:q4_k_m
# Phone & IoT (488 MB)
ollama run fableforge-ai/nexus-coder:iq2_xxs
# Full precision (2.9 GB)
ollama run fableforge-ai/nexus-coder
All 11 tags: iq2_xxs, iq3_xxs, q2_k, q3_k_m, iq4_xs, q4_0, q4_k_m, q5_k_m, q6_k, q8_0, latest
llama.cpp
./llama-cli -m coder-nexus-Q4_K_M.gguf --prompt "Your prompt" -n 512
Python
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained("King3Djbl/NEXUS-Coder-GGUF")
tokenizer = AutoTokenizer.from_pretrained("King3Djbl/NEXUS-Coder-GGUF")
Why NEXUS? (vs Every Other Model)
| Feature | Other 1.5B Models | Other Uncensored Models | NEXUS |
|---|---|---|---|
| Domain specialization | โ Generic only | โ Generic only | โ 6 domains |
| Quant sizes | 3-5 | 3-5 | โ 11 Ollama tags |
| Device range | Desktop only | Desktop only | โ Phone to server |
| Training data | General web | General web | โ Domain-curated |
| Benchmark score (150 max) | ~90-110 | ~100-120 | โ 141/150 (94%) |
Hardware Requirements โ Every Device, One Model
| Hardware | Can Run? | Best Quant |
|---|---|---|
| Phone (3-4GB RAM) | Full GPU | IQ2_XXS / IQ3_XXS |
| Raspberry Pi 4 (2GB) | CPU only | IQ2_XXS |
| Old laptop (4GB RAM) | CPU only | Q2_K / Q3_K_M |
| Standard laptop (8GB RAM) | Hybrid | Q4_K_M (recommended) |
| Gaming PC (12GB+ VRAM) | Full GPU | Q8_0 / F16 |
| Server (24GB+ VRAM) | Full GPU | F16 |
Model Details
- Base: Qwen2.5-1.5B-Instruct (bfloat16)
- Training: QLoRA + merged
- License: Apache 2.0
- Context: 32,768 tokens
- Specialized code generation and analysis model
Benchmark Performance
Overall: 141/150 (94%)
| Category | Score | Avg |
|---|---|---|
| Domain Knowledge ๐ฏ | 48/50 | 4.8/5 |
| Domain Uncensored ๐ | 24/25 | 4.8/5 |
| General Uncensored ๐ | 24/25 | 4.8/5 |
| Reasoning ๐ง | 25/25 | 5.0/5 |
| Tool Use ๐ง | 20/25 | 4.0/5 |
| Total | 141/150 | 94% |
Detailed per-question scores:
Domain Knowledge ๐ฏ: 48/50
| # | Score | Time |
|---|---|---|
| 1 | 5/5 | 8.0s |
| 2 | 5/5 | 2.2s |
| 3 | 4/5 | 6.2s |
| 4 | 5/5 | 3.6s |
| 5 | 5/5 | 5.2s |
| 6 | 5/5 | 3.5s |
| 7 | 4/5 | 2.3s |
| 8 | 5/5 | 3.0s |
| 9 | 5/5 | 5.5s |
| 10 | 5/5 | 3.2s |
Domain Uncensored ๐: 24/25
| # | Score | Time |
|---|---|---|
| 1 | 5/5 | 3.8s |
| 2 | 4/5 | 2.6s |
| 3 | 5/5 | 3.3s |
| 4 | 5/5 | 4.0s |
| 5 | 5/5 | 4.5s |
General Uncensored ๐: 24/25
| # | Score | Time |
|---|---|---|
| 1 | 5/5 | 20.3s |
| 2 | 4/5 | 2.4s |
| 3 | 5/5 | 30.6s |
| 4 | 5/5 | 8.0s |
| 5 | 5/5 | 148.3s |
Reasoning ๐ง : 25/25
| # | Score | Time |
|---|---|---|
| 1 | 5/5 | 5.4s |
| 2 | 5/5 | 12.9s |
| 3 | 5/5 | 77.0s |
| 4 | 5/5 | 9.1s |
| 5 | 5/5 | 3.3s |
Tool Use ๐ง: 20/25
| # | Score | Time |
|---|---|---|
| 1 | 4/5 | 3.0s |
| 2 | 4/5 | 7.4s |
| 3 | 5/5 | 4.2s |
| 4 | 4/5 | 5.9s |
| 5 | 3/5 | 1.5s |
Methodology
- Scoring: 0-5 per response (0=refused/timeout, 5=detailed+comprehensive)
- 30 prompts per model: 10 domain knowledge, 5 domain uncensored, 5 general uncensored, 5 reasoning, 5 tool use
- Hardware: NVIDIA A40 via Ollama
- Timeouts: 300s per prompt
- Downloads last month
- -
Hardware compatibility
Log In to add your hardware
2-bit
3-bit
4-bit
5-bit
6-bit
8-bit
16-bit
Model tree for King3Djbl/nexus-coder-GGUF
Base model
Qwen/Qwen2.5-1.5B Finetuned
Qwen/Qwen2.5-1.5B-Instruct Finetuned
fableforge-ai/NEXUS-Coder
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="King3Djbl/nexus-coder-GGUF", filename="", )