How to use from
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 Knixee/Atlas-nms-v2:
# Run inference directly in the terminal:
llama cli -hf Knixee/Atlas-nms-v2:
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama serve -hf Knixee/Atlas-nms-v2:
# Run inference directly in the terminal:
llama cli -hf Knixee/Atlas-nms-v2:
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 Knixee/Atlas-nms-v2:
# Run inference directly in the terminal:
./llama-cli -hf Knixee/Atlas-nms-v2:
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 Knixee/Atlas-nms-v2:
# Run inference directly in the terminal:
./build/bin/llama-cli -hf Knixee/Atlas-nms-v2:
Use Docker
docker model run hf.co/Knixee/Atlas-nms-v2:
Quick Links

Atlas

Local Atlas from the game No Man's Sky.

Atlas

Serving GGUF & AWQ Models with vLLM

Examples for running GGUF (via llama.cpp) and AWQ (via vLLM).

GGUF Version (via llama.cpp)

# pip install llama-cpp-python

from llama_cpp import Llama

llm = Llama.from_pretrained(
repo_id="Knixee/Atlas-nms-v2",
filename="Atlas-2.0-Q4_K_M.gguf", # Or Q4_K_S, Q8_0, BF16 
)

output = llm("User: Hello!\nAssistant:", max_tokens=512)
print(output["choices"][0]["text"])

AWQ Version (via vLLM)

To launch 4bit AWQ version you need to download this folder

# pip install vllm

vllm serve Knixee/Atlas-nms-v2 \
  --subfolder Atlas-2.0-AWQ-4bit \
  --served-model-name Atlas-nms-v2 \
  --quantization awq \
  --max-model-len 8192 \
  --gpu-memory-utilization 0.88 \
  --max-num-seqs 6 \
  --port 8148

API Request Example:

curl http://localhost:8148/v1/chat/completions \
  -H "Content-Type: application/json" \
  -d '{"model": "Atlas-nms-v2", "messages": [{"role": "user", "content": "Hello!"}]}'

Contacts

Downloads last month
455
GGUF
Model size
8B params
Architecture
qwen3
Hardware compatibility
Log In to add your hardware

4-bit

8-bit

16-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for Knixee/Atlas-nms-v2

Finetuned
Qwen/Qwen3-8B
Quantized
(8)
this model

Dataset used to train Knixee/Atlas-nms-v2