Instructions to use CEAMFA/palmer-007-preview with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use CEAMFA/palmer-007-preview with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="CEAMFA/palmer-007-preview") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("CEAMFA/palmer-007-preview", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use CEAMFA/palmer-007-preview 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 CEAMFA/palmer-007-preview:Q8_0 # Run inference directly in the terminal: llama cli -hf CEAMFA/palmer-007-preview:Q8_0
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf CEAMFA/palmer-007-preview:Q8_0 # Run inference directly in the terminal: llama cli -hf CEAMFA/palmer-007-preview:Q8_0
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 CEAMFA/palmer-007-preview:Q8_0 # Run inference directly in the terminal: ./llama-cli -hf CEAMFA/palmer-007-preview:Q8_0
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 CEAMFA/palmer-007-preview:Q8_0 # Run inference directly in the terminal: ./build/bin/llama-cli -hf CEAMFA/palmer-007-preview:Q8_0
Use Docker
docker model run hf.co/CEAMFA/palmer-007-preview:Q8_0
- LM Studio
- Jan
- vLLM
How to use CEAMFA/palmer-007-preview with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "CEAMFA/palmer-007-preview" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "CEAMFA/palmer-007-preview", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/CEAMFA/palmer-007-preview:Q8_0
- SGLang
How to use CEAMFA/palmer-007-preview with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "CEAMFA/palmer-007-preview" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "CEAMFA/palmer-007-preview", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "CEAMFA/palmer-007-preview" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "CEAMFA/palmer-007-preview", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Ollama
How to use CEAMFA/palmer-007-preview with Ollama:
ollama run hf.co/CEAMFA/palmer-007-preview:Q8_0
- Unsloth Studio
How to use CEAMFA/palmer-007-preview 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 CEAMFA/palmer-007-preview 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 CEAMFA/palmer-007-preview to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for CEAMFA/palmer-007-preview to start chatting
- Pi
How to use CEAMFA/palmer-007-preview with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf CEAMFA/palmer-007-preview:Q8_0
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "CEAMFA/palmer-007-preview:Q8_0" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use CEAMFA/palmer-007-preview with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf CEAMFA/palmer-007-preview:Q8_0
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default CEAMFA/palmer-007-preview:Q8_0
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use CEAMFA/palmer-007-preview with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf CEAMFA/palmer-007-preview:Q8_0
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "CEAMFA/palmer-007-preview:Q8_0" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use CEAMFA/palmer-007-preview with Docker Model Runner:
docker model run hf.co/CEAMFA/palmer-007-preview:Q8_0
- Lemonade
How to use CEAMFA/palmer-007-preview with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull CEAMFA/palmer-007-preview:Q8_0
Run and chat with the model
lemonade run user.palmer-007-preview-Q8_0
List all available models
lemonade list
palmer-007-preview
This model is an important improvement over our previous model. To get early access to this model you need to join to the CEAMFA community by keeping an active ko-fi subscription. You can get more information on how to ๐access this model by clicking here.
Note
- Before you activate your subscription, remember that this is a base model not a chat assistant!
- Temp 0 for best results.
- A system prompt might help if you still want to use it as a chat model.
- The model has a known preference to use an unused token. We are still investigating if it is happening due to a mismatch in the tokenizer during the knowledge distillation phase or an issue with gguf, we are working on a fix soon.
- The issue above can be partly solved by using "<" as stop token as long as your use case does not involve html nor similar tag texts.
Benchmarks
| Benchmark | What it measures | Metric | palmer-006 | This model |
|---|---|---|---|---|
| ARC-Easy | Basic science and general reasoning | acc_norm | 44.82% | 47.69% |
| ARC-Challenge | Harder scientific reasoning | acc_norm | 29.27% | 30.29% |
| PIQA | Physical commonsense | acc_norm | 63.60% | 63.71% |
| WinoGrande | Pronoun resolution and contextual reasoning | accuracy | 50.36% | 50.83% |
| HellaSwag | Plausible continuation and commonsense | acc_norm | 38.41% | 38.50% |
| ArithMark-3 | Elementary arithmetic and quantitative continuation | acc_norm | 52.70% | 56.20% |
| BananaMind raw | Broad language, reasoning, context and code | accuracy | 66.00% | 66.29% |
| BananaMind Elo | Fixed-item capability rating | Elo | 1124 | 1126 |
| TextIntent overall strict | Exact task completion across all 1,000 public items | strict pass | 26.60% | 31.70% |
| TextIntent overall quality | Graded semantic and constraint quality | quality score | 50.43% | 59.63% |
| TextIntent generation strict | Exact execution of rewriting, formatting and tool tasks | strict pass | 0.44% | 7.78% |
| TextIntent generation quality | Semantic quality of generated answers | quality score | 55.63% | 72.75% |
| TextIntent Elo | Overall fixed-item benchmark rating | Elo | 833 | 880 |
Details
TextIntent is our internal metric for measured usefulness, behaviour and instruction-following capabilities on small language models. Llama.cpp and Ollama compatible early mid-training checkpoint with significant improvements over palmer-006.
- Downloads last month
- 3
8-bit
Model tree for CEAMFA/palmer-007-preview
Base model
appvoid/palmer-007-preview