InfluMatch: Frontier-Quality KOL Search at 4B-Model Cost
Summary
InfluMatch is a low-cost, three-stage cascade system designed for matching Key Opinion Leaders (KOLs) to free-form, multi-part Thai marketing criteria. This system addresses the limitations of keyword search and the high cost of frontier Large Language Models (LLMs) by employing a retrieval, rerank, and reason pipeline built entirely from small 4B open-weight models. The first stage retrieves 50 candidates, followed by a 4B pointwise reranker that scores and narrows the list to 10. Finally, a 4B reasoner grades the shortlist per criterion with a Thai rationale. The deployed system, utilizing a SimPO-tuned reranker and an untuned base reasoner, achieves 94.1% P@5 on an 11-query set, outperforming the frontier model Kimi-K2.6 (91.8%) while emitting approximately 35 times fewer output tokens and processing a 50-KOL query in about 20 seconds on a single A100 GPU. A key finding indicates that pairwise SimPO fine-tuning for the reranker is effective, whereas pointwise fine-tuning for the reasoner degrades end-to-end performance due to label design issues.
Key takeaway
For AI Engineers designing complex search or ranking systems, if you are weighing frontier LLM costs against performance, InfluMatch demonstrates that a multi-stage cascade of small 4B open-weight models can achieve superior accuracy at significantly lower operational cost. You should prioritize a retrieval-rerank-reason architecture and leverage pairwise preference optimization like SimPO for rerankers. Avoid complex pointwise fine-tuning for reasoners if your labeling task design introduces noise, as untuned base models may perform better end-to-end.
Key insights
A multi-stage cascade of small LLMs, fine-tuned with relative judgments, achieves frontier-quality search at low cost.
Principles
- Cascade designs (retrieval, rerank, reason) optimize cost and accuracy.
- Relative judgments (pairwise) yield better fine-tuning than absolute scores.
- Filtering candidates before reasoning improves both accuracy and cost.
Method
InfluMatch employs dense retrieval for 50 KOLs, a 4B SimPO-tuned reranker for the top-10, and a 4B untuned reasoner for per-criterion scoring with Thai rationales.
In practice
- Apply SimPO for reranker fine-tuning.
- Structure search with retrieval, rerank, and reason stages.
- Prefer text-only reranking for cost-effectiveness.
Topics
- Influencer Marketing
- KOL Search
- Multi-stage LLM Cascades
- SimPO Fine-tuning
- Reranking Models
- Cost-efficient AI
Best for: Research Scientist, AI Architect, NLP Engineer, Machine Learning Engineer, AI Engineer, AI Scientist
Related on AIssential
Editorial summary, takeaway, and curation by AIssential. Original article published by cs.CL updates on arXiv.org.