Instructions to use build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer", filename="MiniCPM5-1B.Q4_K_M.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 build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer 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 build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer:Q4_K_M # Run inference directly in the terminal: llama cli -hf build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer:Q4_K_M # Run inference directly in the terminal: llama cli -hf build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer:Q4_K_M
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 build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer:Q4_K_M
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 build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer:Q4_K_M
Use Docker
docker model run hf.co/build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer:Q4_K_M
- Ollama
How to use build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer with Ollama:
ollama run hf.co/build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer:Q4_K_M
- Unsloth Studio
How to use build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer 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 build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer 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 build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer to start chatting
- Pi
How to use build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer:Q4_K_M
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": "build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer:Q4_K_M
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 build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer:Q4_K_M
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 "build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer:Q4_K_M" \ --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 build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer with Docker Model Runner:
docker model run hf.co/build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer:Q4_K_M
- Lemonade
How to use build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer:Q4_K_M
Run and chat with the model
lemonade run user.minicpm5-1b-indian-fmcg-normalizer-Q4_K_M
List all available models
lemonade list
MiniCPM5-1B — Indian FMCG Product Name Normalizer
Fine-tuned openbmb/MiniCPM5-1B to normalize inconsistent Indian FMCG product names from distributor invoices into canonical SKU names. Part of the Kirana Detective project — an AI system for small Indian grocery stores to reconcile purchase invoices against a master product catalog.
Model Description
Indian kirana (grocery) distributors write product names in highly inconsistent shorthand on invoices: abbreviations, typos, mixed case, regional variants, and truncated descriptions. This model maps any such raw string to a clean, canonical product name that can be matched against a standardized catalog.
Example inputs → outputs:
| Raw Invoice Name | Normalized Output |
|---|---|
MAGGI NDL 70GM |
Nestle Maggi Masala Noodles 70g |
SURF XL 1K |
Surf Excel Washing Powder 1kg |
PARLEG 80 |
Parle-G Biscuit 80g |
COLGAT 100G |
Colgate Strong Teeth Toothpaste 100g |
AMUL BTR 100 |
Amul Butter 100g |
BRIT MARIE LT |
Britannia Marie Light Biscuit |
How to Use
With llama.cpp
llama-cli --model MiniCPM5-1B.Q4_K_M.gguf \
-p "<|im_start|>system\nYou are an Indian FMCG product name normalizer. Given a raw product name from a distributor invoice, return ONLY the canonical product name. No explanation, no punctuation — just the canonical name.<|im_end|>\n<|im_start|>user\nInvoice product name: \"MAGGI NDL 70GM\"<|im_end|>\n<|im_start|>assistant\n"
With Python (transformers)
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer")
model = AutoModelForCausalLM.from_pretrained("build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer")
messages = [
{"role": "system", "content": "You are an Indian FMCG product name normalizer. Given a raw product name from a distributor invoice, return ONLY the canonical product name. No explanation, no punctuation — just the canonical name."},
{"role": "user", "content": 'Invoice product name: "MAGGI NDL 70GM"'},
]
text = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
inputs = tokenizer(text, return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=32)
print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[1]:], skip_special_tokens=True))
# → Nestle Maggi Masala Noodles 70g
Training Details
Dataset
- Size: 2,000 synthetic (raw, canonical) pairs covering ~200 Indian FMCG SKUs
- Train / Eval split: 1,800 / 200 (90 / 10)
- Generation method: Rule-based augmentation of a hand-curated catalog — abbreviation expansion, typo injection, random truncation, and regional shorthand patterns
- Format: Chat template (system + user + assistant turns)
Hyperparameters
| Parameter | Value |
|---|---|
| Method | QLoRA (4-bit base + LoRA adapters) |
| LoRA rank | 16 |
| LoRA alpha | 16 |
| LoRA target modules | q_proj, k_proj, v_proj, o_proj, gate_proj, up_proj, down_proj |
| Trainable parameters | 11,206,656 / 1,091,839,488 (1.03%) |
| Epochs | 3 |
| Total steps | 339 |
| Batch size per device | 8 |
| Gradient accumulation steps | 2 |
| Effective batch size | 16 |
| Learning rate | 2e-4 |
| LR scheduler | Cosine |
| Max sequence length | 512 |
| Precision | BF16 |
Training Infrastructure
| Field | Value |
|---|---|
| Hardware | NVIDIA A10G (22 GB VRAM) |
| Framework | Unsloth 2026.6.1 |
| Orchestration | Modal |
| Training time | ~3 minutes |
| Train loss | 0.5834 |
| Throughput | 2.14 steps/sec · 34.2 samples/sec |
Quantization
The published file is MiniCPM5-1B.Q4_K_M.gguf (~688 MB), quantized from BF16 using llama.cpp Q4_K_M.
Limitations
- Trained on synthetic data only — real-world invoice noise may differ from the patterns simulated during generation
- Covers ~200 Indian FMCG SKUs; performance on out-of-catalog or regional/private-label products is untested
- Output is a direct string match; post-processing fuzzy matching against a catalog index is recommended in production
Citation
@misc{kirana-detective-2026,
title = {Kirana Detective: AI Invoice Reconciliation for Indian Grocery Stores},
author = {Syed Naazim hussain},
year = {2026},
url = {https://huggingface.co/build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer}
}
- Downloads last month
- 32
4-bit
Model tree for build-small-hackathon/minicpm5-1b-indian-fmcg-normalizer
Base model
openbmb/MiniCPM5-1B