Instructions to use Ephraimmm/Pidgn_Rufus_model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use Ephraimmm/Pidgn_Rufus_model with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="Ephraimmm/Pidgn_Rufus_model", filename="llama-3.2-3b-instruct.F16.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use Ephraimmm/Pidgn_Rufus_model 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 Ephraimmm/Pidgn_Rufus_model:F16 # Run inference directly in the terminal: llama cli -hf Ephraimmm/Pidgn_Rufus_model:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf Ephraimmm/Pidgn_Rufus_model:F16 # Run inference directly in the terminal: llama cli -hf Ephraimmm/Pidgn_Rufus_model: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 Ephraimmm/Pidgn_Rufus_model:F16 # Run inference directly in the terminal: ./llama-cli -hf Ephraimmm/Pidgn_Rufus_model: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 Ephraimmm/Pidgn_Rufus_model:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf Ephraimmm/Pidgn_Rufus_model:F16
Use Docker
docker model run hf.co/Ephraimmm/Pidgn_Rufus_model:F16
- LM Studio
- Jan
- vLLM
How to use Ephraimmm/Pidgn_Rufus_model with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Ephraimmm/Pidgn_Rufus_model" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Ephraimmm/Pidgn_Rufus_model", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Ephraimmm/Pidgn_Rufus_model:F16
- Ollama
How to use Ephraimmm/Pidgn_Rufus_model with Ollama:
ollama run hf.co/Ephraimmm/Pidgn_Rufus_model:F16
- Unsloth Studio
How to use Ephraimmm/Pidgn_Rufus_model 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 Ephraimmm/Pidgn_Rufus_model 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 Ephraimmm/Pidgn_Rufus_model to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for Ephraimmm/Pidgn_Rufus_model to start chatting
- Pi
How to use Ephraimmm/Pidgn_Rufus_model with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Ephraimmm/Pidgn_Rufus_model:F16
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": "Ephraimmm/Pidgn_Rufus_model:F16" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use Ephraimmm/Pidgn_Rufus_model with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Ephraimmm/Pidgn_Rufus_model:F16
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 Ephraimmm/Pidgn_Rufus_model:F16
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use Ephraimmm/Pidgn_Rufus_model with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf Ephraimmm/Pidgn_Rufus_model:F16
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 "Ephraimmm/Pidgn_Rufus_model:F16" \ --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 Ephraimmm/Pidgn_Rufus_model with Docker Model Runner:
docker model run hf.co/Ephraimmm/Pidgn_Rufus_model:F16
- Lemonade
How to use Ephraimmm/Pidgn_Rufus_model with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull Ephraimmm/Pidgn_Rufus_model:F16
Run and chat with the model
lemonade run user.Pidgn_Rufus_model-F16
List all available models
lemonade list
Pidgn Rufus Model
A Llama 3.2 3B Instruct fine-tune exported as a single-file GGUF (F16) checkpoint, intended for conversational use in Nigerian Pidgin English (pcm).
Overview
This repository packages a fine-tuned version of Meta's Llama 3.2 3B Instruct model, converted to the GGUF format for use with llama.cpp-based runtimes (e.g. Ollama, LM Studio, llama.cpp itself). Based on the repository name and the included Ollama Modelfile, the model is intended to generate and respond to text in Nigerian Pidgin English, an English-based creole widely spoken in Nigeria.
The training data, dataset composition, and evaluation results are not published in this repository, so no claims are made here beyond what can be verified from the files present (config.json, Modelfile, README.md).
Training Details
| Detail | Value |
|---|---|
| Base model | meta-llama/Llama-3.2-3B-Instruct (verified via Modelfile and architecture in config.json: LlamaForCausalLM, hidden size 3072, 28 layers, 24 attention heads, 8 KV heads, vocab size 128,256) |
| Fine-tuning framework | Unsloth (evidenced by unsloth_version and unsloth_fixed fields in config.json) |
| Final training loss | 0.7410 (as reported in the prior model card) |
| Export format | GGUF, F16 precision, merged single-file checkpoint (llama-3.2-3b-instruct.F16.gguf) |
Hyperparameters such as dataset size/source, number of epochs or steps, learning rate, and evaluation metrics are not included in this repository (no trainer_state.json, training_args.bin, or dataset card are present), so they are intentionally omitted rather than estimated.
Intended Use
- Conversational text generation in Nigerian Pidgin English (and English, inherited from the base model).
- Local/offline inference via GGUF-compatible runtimes such as Ollama or
llama.cpp. - Experimentation and prototyping for Pidgin-language chatbots, assistants, or translation-adjacent tools.
This model is a fine-tune of an instruct model and has not been evaluated for production, safety-critical, or high-stakes deployments.
How to Use
Option 1: Ollama
A ready-made Modelfile is included in this repository (built on the Llama 3 chat template with <|start_header_id|>/<|eot_id|> tokens). To run locally with Ollama:
# Download the gguf and Modelfile from this repo, then:
ollama create pidgn-rufus -f Modelfile
ollama run pidgn-rufus
Option 2: llama.cpp
./llama-cli -m llama-3.2-3b-instruct.F16.gguf -p "How you dey today?"
Option 3: transformers (GGUF loader)
from transformers import AutoModelForCausalLM, AutoTokenizer
model_id = "Ephraimmm/Pidgn_Rufus_model"
filename = "llama-3.2-3b-instruct.F16.gguf"
tokenizer = AutoTokenizer.from_pretrained(model_id, gguf_file=filename)
model = AutoModelForCausalLM.from_pretrained(model_id, gguf_file=filename)
inputs = tokenizer("How you dey today?", return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=100)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
Limitations
- No dataset card, training script, or evaluation results are published alongside this checkpoint, so its Pidgin-generation quality, coverage of dialectal variation, and safety behavior have not been independently verified.
- Inherits the general limitations of the Llama 3.2 3B base model, including potential factual errors, hallucinations, and biases.
- Only an F16 GGUF export is provided; no quantized variants (e.g. Q4/Q8) are currently included in this repository.
- License terms follow Meta's Llama 3.2 Community License, which applies to derivative/fine-tuned models.
Author
Developed by Ephraimmm.
- Downloads last month
- 3
16-bit
Model tree for Ephraimmm/Pidgn_Rufus_model
Base model
meta-llama/Llama-3.2-3B-Instruct