Instructions to use kartikey31/txn-parser with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use kartikey31/txn-parser with PEFT:
Task type is invalid.
- llama-cpp-python
How to use kartikey31/txn-parser with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="kartikey31/txn-parser", filename="gemma-3-270m/gguf/txn-parser-gemma-3-270m-F16.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- llama.cpp
How to use kartikey31/txn-parser with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf kartikey31/txn-parser:Q4_K_M # Run inference directly in the terminal: llama-cli -hf kartikey31/txn-parser:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf kartikey31/txn-parser:Q4_K_M # Run inference directly in the terminal: llama-cli -hf kartikey31/txn-parser: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 kartikey31/txn-parser:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf kartikey31/txn-parser: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 kartikey31/txn-parser:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf kartikey31/txn-parser:Q4_K_M
Use Docker
docker model run hf.co/kartikey31/txn-parser:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use kartikey31/txn-parser with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "kartikey31/txn-parser" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "kartikey31/txn-parser", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/kartikey31/txn-parser:Q4_K_M
- Ollama
How to use kartikey31/txn-parser with Ollama:
ollama run hf.co/kartikey31/txn-parser:Q4_K_M
- Unsloth Studio new
How to use kartikey31/txn-parser 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 kartikey31/txn-parser 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 kartikey31/txn-parser to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for kartikey31/txn-parser to start chatting
- Docker Model Runner
How to use kartikey31/txn-parser with Docker Model Runner:
docker model run hf.co/kartikey31/txn-parser:Q4_K_M
- Lemonade
How to use kartikey31/txn-parser with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull kartikey31/txn-parser:Q4_K_M
Run and chat with the model
lemonade run user.txn-parser-Q4_K_M
List all available models
lemonade list
txn-parser
QLoRA fine-tunes of three small base models for extracting structured transaction data (amount, currency, item, category, type) from free-form Indian-English / code-switched speech and text. Trained on the same 93k-row teacher-labeled dataset, validator-gated, and quantized to 5 GGUF tiers each.
This repo holds all three published students in side-by-side subfolders so a downstream app can pick its size/quality tradeoff:
| Base model | Subfolder | Params | Best on-device pick |
|---|---|---|---|
unsloth/gemma-3-270m-it |
gemma-3-270m/ |
270M | Q5_K_M (260 MB, 99.7% schema) |
HuggingFaceTB/SmolLM2-360M-Instruct |
smollm2-360m/ |
360M | Q4_K_M (271 MB, 100% schema) |
Qwen/Qwen3-0.6B |
qwen3-0.6b/ |
600M | Q4_K_M (397 MB, 100% schema, best exact match) |
Each subfolder contains:
<short>/
βββ adapters/ # PEFT LoRA adapter (load on top of base)
β βββ adapter_config.json
β βββ adapter_model.safetensors
βββ gguf/ # 5 merged quantizations, ship-ready
β βββ txn-parser-<short>-F16.gguf
β βββ txn-parser-<short>-Q8_0.gguf
β βββ txn-parser-<short>-Q6_K.gguf
β βββ txn-parser-<short>-Q5_K_M.gguf
β βββ txn-parser-<short>-Q4_K_M.gguf
βββ README.md # model card with the exact SYSTEM_PROMPT
Eval (300-example held-out set, grammar-constrained decoding)
| Model | Quant | Size | JSON valid | Schema valid | Exact match | Amount exact | Mean ms |
|---|---|---|---|---|---|---|---|
| gemma-3-270m | Q5_K_M | 260 MB | 99.7% | 99.7% | 51.0% | 84.7% | 1788 |
| gemma-3-270m | Q4_K_M | 253 MB | 93.3% | 93.3% | 48.3% | 80.7% | 2660 |
| smollm2-360m | Q5_K_M | 290 MB | 100.0% | 100.0% | 52.7% | 89.0% | 996 |
| smollm2-360m | Q4_K_M | 271 MB | 100.0% | 100.0% | 53.3% | 87.3% | 978 |
| qwen3-0.6b | Q5_K_M | 444 MB | 100.0% | 100.0% | 60.0% | 91.3% | 857 |
| qwen3-0.6b | Q4_K_M | 397 MB | 100.0% | 100.0% | 60.0% | 90.7% | 885 |
(Showing Q5_K_M + Q4_K_M only β full 15-row table for all 5 quants is in
the source repo's eval_results/REPORT.md.)
Recommendations:
- Best accuracy on-device:
qwen3-0.6b-Q4_K_M(397 MB, 60% exact, ~885 ms) - Smallest ship size:
smollm2-360m-Q4_K_M(271 MB, 53% exact, ~978 ms) - Lowest latency:
qwen3-0.6b-Q8_0(639 MB, 59% exact, ~851 ms) - Avoid:
gemma-3-270m-Q4_K_Mβ quality cliff vs Q5_K_M (93% β 99.7% schema)
Quick download
# Just one quant of one model (small)
huggingface-cli download kartikey31/txn-parser \
smollm2-360m/gguf/txn-parser-smollm2-360m-Q4_K_M.gguf --local-dir .
# Everything (3 models Γ 5 quants, ~5 GB)
huggingface-cli download kartikey31/txn-parser --local-dir ./txn-parser
Or from Python:
from huggingface_hub import hf_hub_download
gguf = hf_hub_download(
"kartikey31/txn-parser",
"qwen3-0.6b/gguf/txn-parser-qwen3-0.6b-Q4_K_M.gguf",
)
Inference (llama-cpp-python)
from llama_cpp import Llama
# Same SYSTEM_PROMPT for ALL three models β they were trained with it.
SYSTEM_PROMPT = """You convert voice-transcribed transaction descriptions into structured JSON.
Output ONLY a JSON object with this schema, no other text:
{"transactions":[{"amount":<number>,"currency":"INR"|"USD","item":"<lowercase singular noun phrase>","category":"<enum>","type":"expense"|"income"}]}
Categories: Food, Drinks, Groceries, Transport, Shopping, Entertainment, Bills, Health, Education, Personal, Gifts, Income, Other.
Rules:
- Currency defaults to INR. Use USD only when the input explicitly says "dollars" or contains "$".
- Amounts: "k" = Γ1000, "hazaar" = Γ1000, "sau" = Γ100, "lakh" = Γ100000. Convert number-words ("five hundred") to digits.
- type is "expense" by default; "income" only for explicit salary, cashback, refund, gift received, payment received.
- For disfluencies and corrections ("500 wait no 600"), output the CORRECTED amount only.
- For ambiguous items ("that thing", "stuff"), use item "unspecified" and category "Other".
- Item field: lowercase singular noun phrase ("uber ride", "beer", "chai" β not "Beers" or "Uber").
- Multi-transaction inputs become multiple array entries in spoken order.
- Category heuristics: uber/ola/auto/petrol/bus/metro β Transport; beer/wine/chai/coffee/juice β Drinks; rent/electricity/wifi/recharge/gas β Bills; movie/netflix/concert β Entertainment; doctor/medicine/hospital β Health."""
llm = Llama(
model_path="txn-parser-qwen3-0.6b-Q4_K_M.gguf",
n_gpu_layers=-1, n_ctx=1024,
)
out = llm.create_chat_completion(messages=[
{"role": "system", "content": SYSTEM_PROMPT},
{"role": "user", "content": "200 ka samosa and 50 chai"},
], temperature=0.0)
print(out["choices"][0]["message"]["content"])
# {"transactions":[{"amount":200,"currency":"INR","item":"samosa",...}, ...]}
For Android / on-device deployment guidance (recommended llama.cpp params, battery checklist, Kotlin POC), see the training pipeline README.
Training pipeline
Full reproduction pipeline (data generation β teacher training β
distillation β multi-model student training β multi-quant export β eval
report) lives at
github.com/kartikeychoudhary/txn-parser.
A single command reproduces all three models from a fresh checkout:
git clone https://github.com/kartikeychoudhary/txn-parser
cd txn-parser
bash setup.sh
python scripts/05_generate_distillation_data.py --phase eval --force-eval-copy
python scripts/train_and_publish.py # trains gemma, smollm, qwen; publishes here
python scripts/eval_all_quants.py # regenerates the eval table
License
Apache 2.0 (matches all three base model licenses).
- Downloads last month
- 1,488
4-bit
5-bit
6-bit
8-bit
16-bit
Task type is invalid.