Ayoub Kirouane, Christos Petrocheilos
6 min
Modern Greek is absent from NVIDIA's Nemotron retrieval models and from major multilingual retrieval benchmarks, despite being important for retrieval-augmented generation (RAG) in legal, energy, financial, and medical applications. We present an end-to-end adaptation of the Nemotron retrieval stack for Modern Greek, including corpus mining, synthetic supervision, retrieval model training, reranker adaptation, reader fine-tuning, and a new benchmark called HERA. Our study shows that a parameter-free BM25 baseline outperforms several off-the-shelf multilingual dense retrieval models on specialist Greek corpora. After fine-tuning on 65,773 Greek retrieval pairs, a Nemotron 1B embedder improves nDCG@10 from 0.362 to 0.835 and substantially outperforms its unadapted counterpart. The learned language competence transfers to general-domain Greek, although the advantage over BM25 remains domain-dependent. We further adapt a cross-encoder reranker and demonstrate consistent improvements across specialist domains. Finally, we LoRA-tune a Nemotron 30B-A3B mixture-of-experts reader for grounded generation, increasing judged answer correctness from 29.4% to 66.9% while significantly improving faithfulness and citation quality. We also introduce HERA, the first large-scale Greek benchmark for retrieval-augmented generation, and release our adapted models and benchmark to support future research on Greek-language RAG systems.
This study addresses the absence of Modern Greek in major retrieval-augmented generation (RAG) models and benchmarks. The authors developed an end-to-end adaptation of the NVIDIA Nemotron retrieval stack, specifically targeting legal, energy, financial, and medical domains. The process involved mining a large corpus of Greek text, generating synthetic training pairs, fine-tuning a 1B embedder, and adapting a cross-encoder reranker. To evaluate these systems, the authors introduced HERA (Hellenic Retrieval-Augmented), a new large-scale benchmark designed to measure retrieval and grounded generation performance in Greek.
The researchers discovered that off-the-shelf multilingual dense retrieval models often underperform compared to a parameter-free BM25 lexical baseline when applied to specialist Greek documents. This suggests that for these domains, the primary bottleneck is language exposure rather than model capacity. By fine-tuning a 1B Nemotron embedder on 65,773 Greek retrieval pairs, the authors achieved a substantial improvement in retrieval accuracy (nDCG@10 increasing from 0.362 to 0.835). Furthermore, LoRA-tuning a 30B-A3B mixture-of-experts reader model significantly improved grounded generation, raising judged answer correctness from 29.4% to 66.9% while enhancing citation quality.
Modern Greek is frequently overlooked in the development of RAG systems, despite the high demand for automated processing of complex, jargon-dense documents in professional sectors. This paper provides a practical roadmap for adapting existing retrieval stacks to low-resource or under-represented languages. By releasing the HERA benchmark and the adapted models, the authors provide the necessary infrastructure for future research into Greek-language RAG, demonstrating that domain-specific adaptation is essential for achieving reliable performance in specialized fields.
Sam: So HERA is specifically designed to catch overconfident systems. Did the new model actually end up beating that old keyword-search baseline?
Alex: It did, but with an important caveat. The single best result came not from the new model alone, but from combining it with the traditional keyword-search tool — what the researchers call hybrid retrieval. The new model is better at understanding meaning and context; the old tool is better at catching exact word matches. Together, they cover each other's blind spots.
Sam: So the conclusion isn't "new AI beats old method" — it's more like the two approaches are complementary. The real system is one that knows when to lean on each.
Alex: That's a more accurate way to put it. And there's another layer to this. The researchers also had to deal with what's sometimes called the "lost-in-the-middle" problem. When you feed a long document to an AI, it tends to pay close attention to the beginning and the end, but quietly gloss over the middle sections. So if the relevant passage happens to sit in the middle of a fifty-page contract, the model might miss it.
Sam: How do you train a model out of that habit?
Alex: You shuffle things around deliberately. During training, they randomized where the correct answer appeared within the document — sometimes at the start, sometimes at the end, sometimes buried in the middle. That forces the model to treat every section with equal attention, rather than developing a positional shortcut.
Sam: That's a surprisingly simple fix for what sounds like a deep problem. Though I suppose the model was never incapable of reading the middle — it just learned not to bother.
Alex: Exactly. And that connects to a broader point the paper makes about model size. There's a common assumption that bigger AI models are always better. But the researchers found that simply scaling up the number of parameters didn't help here. A larger model is only better if it has enough of the right data to learn from. For specialized Greek, the bottleneck wasn't capacity — it was the quality and relevance of the training material.
Sam: So it's not about how big your brain is, it's about what you've actually studied.
Alex: That's a good way to put it. And the researchers were notably transparent about the limits of their own evaluation. When you use an AI model to judge the quality of another AI model's output — which is common practice — there's a risk that the judge is more lenient toward models from the same family. They flagged this directly, calling it a "false-positive floor." It doesn't invalidate the results, but it does mean the strongest performance numbers should be read with some caution.
Sam: That kind of honesty is actually useful. It tells you where to trust the findings and where to stay skeptical.
Alex: Which is ultimately the most transferable lesson from this work. Building reliable AI for a non-English language — especially in a specialized domain like law or finance — isn't a matter of downloading a bigger model. It requires carefully constructed training data, domain-appropriate evaluation, and a willingness to combine new methods with older ones that still do certain things well. The researchers demonstrated that for Greek, at least, that combination produces a meaningful improvement over what existed before.
Sam: And presumably the same approach could apply to other languages that have been underserved by the current generation of AI tools.
Alex: The paper doesn't make that claim directly, but the methodology is general enough that the question is worth asking. Thanks for listening to ResearchPod.