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

palmer-004

june update

This model has improved overall performance at the expense of small degradation on winogrande. As all palmer models, the model is biased to respond to answers without using any specific prompt, feel free to further fine-tune it for your specific use case.

Model MMLU ARC-C HellaSwag PIQA Winogrande Average
tinyllama-3t 0.2577 0.3029 0.5935 0.7329 0.5959 0.4966
palmer-004-old 0.2601 0.3456 0.6138 0.7443 0.6511 0.5229
palmer-004 0.2661 0.3490 0.6173 0.7481 0.6417 0.5244

note

Even though palmer-003 is only 2k context size, it's 0.5257 on average so if you don't need that much context size (32k) you are better off with the former one.

Downloads last month
27
Safetensors
Model size
1B params
Tensor type
F16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for appvoid/palmer-004