1# llama-server
2llama-server -m tiny-giant-2500-Q4_K_M.gguf --chat-template chatml --ctx-size 4096
3
4# llama-cpp-python server
5python -m llama_cpp.server --model tiny-giant-2500-Q4_K_M.gguf \
6 --chat_format chatml --n_ctx 4096 --port 8088
1from llama_cpp import Llama
2
3llm = Llama(model_path="tiny-giant-2500-Q4_K_M.gguf", n_ctx=4096, n_gpu_layers=-1)
4out = llm.create_completion(
5 prompt="<|im_start|>user\nWrite a Python function to merge two sorted lists.\n<|im_start|>assistant\n",
6 max_tokens=512,
7 temperature=0.0,
8 stop=["<|im_start|>"],
9)
10print(out["choices"][0]["text"])
Benchmark and internal eval results are populated after the Vast GPU eval run completes. See the companion comparison card in the source repository (MODEL_CARD-2500.md).
Training pipeline and dataset factory:
Tiny-Giant (local repo).
Apache-2.0 (inherits from Qwen2.5-Coder-1.5B-Instruct base).