NebiumTransformer-small
Collection
Chess transformer • 2 items • Updated
How to use nabin2004/nebium-small-gguf with llama.cpp:
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf nabin2004/nebium-small-gguf # Run inference directly in the terminal: llama cli -hf nabin2004/nebium-small-gguf
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf nabin2004/nebium-small-gguf # Run inference directly in the terminal: llama cli -hf nabin2004/nebium-small-gguf
# 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 nabin2004/nebium-small-gguf # Run inference directly in the terminal: ./llama-cli -hf nabin2004/nebium-small-gguf
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 nabin2004/nebium-small-gguf # Run inference directly in the terminal: ./build/bin/llama-cli -hf nabin2004/nebium-small-gguf
docker model run hf.co/nabin2004/nebium-small-gguf
How to use nabin2004/nebium-small-gguf with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "nabin2004/nebium-small-gguf"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "nabin2004/nebium-small-gguf",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker model run hf.co/nabin2004/nebium-small-gguf
How to use nabin2004/nebium-small-gguf with Ollama:
ollama run hf.co/nabin2004/nebium-small-gguf
How to use nabin2004/nebium-small-gguf with Docker Model Runner:
docker model run hf.co/nabin2004/nebium-small-gguf
How to use nabin2004/nebium-small-gguf with Lemonade:
# Download Lemonade from https://lemonade-server.ai/ lemonade pull nabin2004/nebium-small-gguf
lemonade run user.nebium-small-gguf-{{QUANT_TAG}}lemonade list
Quantized and FP16 GGUF format binaries for Nebium-Small (117M parameters).
Designed for low-latency CPU and GPU execution with llama.cpp and Ollama.
| Filename | Precision | Description |
|---|---|---|
nebium-small.gguf |
FP16 | Full-precision baseline export |
tokenizer.json |
Tokenizer | BPE vocabulary and merge definitions |
# Clone and compile llama.cpp
git clone https://github.com/ggerganov/llama.cpp && cd llama.cpp && make
# Download GGUF binary
huggingface-cli download nabin2004/nebium-small-gguf nebium-small.gguf --local-dir .
# Run prompt continuation
./llama-cli -m nebium-small.gguf -p "e2e4 e7e5 g1f3" -n 25 --temp 0.7
# Modelfile
FROM ./nebium-small.gguf
PARAMETER temperature 0.7
PARAMETER stop "<|eos|>"
SYSTEM You are an autoregressive chess next-move prediction model using UCI move notation.
ollama create nebium-small -f Modelfile
ollama run nebium-small "e2e4 e7e5"
MIT License.
We're not able to determine the quantization variants.