InfluMatch: Frontier-Quality KOL Search at 4B-Model Cost
Summary
InfluMatch is a novel, low-cost three-stage cascade system designed for frontier-quality Key Opinion Leader (KOL) search, specifically for free-form, multi-part Thai marketing criteria. Addressing the limitations of expensive frontier LLMs and inaccurate keyword search, InfluMatch utilizes small open-weight models. Its architecture involves a dense retrieval stage returning 50 candidates, followed by a 4B pointwise reranker that selects 10 candidates based on the log-probability of a "Yes" token. Finally, a 4B reasoner grades this shortlist against criteria, providing a Thai rationale. This design significantly reduces costs, halving token spend while improving scores by 14 points compared to reasoning over all 50 candidates. The system achieves 94.1% P@5 end-to-end, outperforming the frontier model Kimi-K2.6 (91.8%) on an 11-query set, while emitting ~35x fewer output tokens and processing a 50-KOL query in ~20 seconds on a single A100. Notably, a SimPO-tuned reranker achieved 78.0 EM best-pick accuracy, matching the frontier baseline.
Key takeaway
For Machine Learning Engineers building semantic search systems for complex, multi-criteria matching, InfluMatch demonstrates a viable path to frontier performance without the prohibitive cost of large LLMs. You should consider implementing a retrieval-rerank-reason cascade using small, open-weight models, focusing on pairwise fine-tuning for rerankers. This approach can significantly reduce inference costs by ~35x and latency to ~20 seconds per query on an A100, making advanced semantic search deployable and explainable within tight budgets.
Key insights
Small, cascaded open-weight models can deliver frontier-quality semantic search at a fraction of the cost.
Principles
- Cascade architectures optimize cost-performance.
- Pointwise reranking with "Yes" token log-prob works.
- Pairwise fine-tuning improves reranker accuracy.
Method
InfluMatch employs a three-stage cascade: dense retrieval (50 candidates), 4B pointwise reranker (top 10), and 4B reasoner (criterion grading with Thai rationale).
In practice
- Design multi-stage cascades for semantic search.
- Leverage small open-weight models for inference.
- Apply pairwise fine-tuning to reranking components.
Topics
- KOL Search
- Cascade Systems
- Semantic Search
- Open-weight Models
- Reranking
- Fine-tuning
Best for: NLP Engineer, Research Scientist, AI Scientist, Machine Learning Engineer, AI Engineer
Related on AIssential
Editorial summary, takeaway, and curation by AIssential. Original article published by Artificial Intelligence.