菜单

关于 🐙 GitHub
arXiv 提交日期: 2026-05-19
📄 Abstract - EmbGen: Teaching with Reassembled Corpora

Adapting small instruction-tuned models to specialized domains often relies on supervised fine-tuning (SFT) on curated instruction-response examples, which is expensive to collect at scale. Synthetic training examples generated by a teacher LLM from a domain corpus can reduce this cost, but existing pipelines can produce homogenized outputs and do not consistently capture cross-passage or cross-document dependencies. We introduce EmbGen, a synthetic data generation pipeline that decomposes a corpus into entity-description pairs, reassembles them using semantic structure inferred from embedding similarity, and then generates question-answer (QA) pairs via proximity, intra-cluster, and inter-cluster sampling with cluster-specialized system prompts. We evaluate EmbGen against EntiGraph, InstructLab and Knowledge-Instruct on three datasets of varied semantic heterogeneity, under fixed token budgets (5 and 20 million tokens). We use lexical overlap metrics, an LLM-as-a-judge rubric, and Binary Accuracy, a composed metric combining Factual Accuracy and Completeness for evaluation. EmbGen improves Binary Accuracy on the most heterogeneous dataset by 12.5% at 5M and 88.9% at 20M tokens budget, relative to the strongest baseline, while remaining competitive across other datasets with lower heterogeneity.

顶级标签: natural language processing llm model training
详细标签: synthetic data generation instruction tuning question-answering pairs domain adaptation embedding similarity 或 搜索:

EmbGen:利用重组语料库进行教学 / EmbGen: Teaching with Reassembled Corpora


1️⃣ 一句话总结

本文提出了一种名为EmbGen的新方法,通过将领域文本拆解成实体与描述,再基于语义相似度重新组合这些片段,从而自动生成高质量、多样化的问答训练数据,帮助小型AI模型更高效地学习专业领域的知识,尤其适用于内容复杂多样的场景。

源自 arXiv: 2605.19394