Evaluation of Chunking Strategies for Effective Text Embedding in Low-Resource Language on Agricultural Documents

· Source: Computation and Language · Field: Technology & Digital — Artificial Intelligence & Machine Learning, Natural Language Processing · Depth: Expert, quick

Summary

A recent study evaluated four text chunking strategies—Recursive, Khmer-Aware, Sentence-Based, and LLM-Based—within a Retrieval-Augmented Generation (RAG) framework for Khmer agricultural documents. Researchers utilized the BGE-M3 multilingual embedding model for encoding and FAISS for retrieval, assessing performance across Average Retrieval Score (L2 distance), Answer Relevance, Khmer Coverage, and Khmer Intersection over Union (IoU). Through 5-fold cross-validation on 18 question-answer pairs, the character-based Recursive chunking method with a 300-character chunk size demonstrated superior performance. It achieved the lowest L2 distance (0.4295 +- 0.0461), highest Answer Relevance (0.8663 +- 0.0199), and highest Khmer IoU (0.6441 +- 0.0347). A paired t-test confirmed a statistically significant improvement over Sentence-Based chunking in L2 distance (p = 0.0121), underscoring the importance of segmentation granularity for effective dense retrieval in low-resource languages.

Key takeaway

For NLP Engineers optimizing Retrieval-Augmented Generation (RAG) systems for low-resource or morphologically complex languages like Khmer, you should prioritize character-based Recursive chunking. This method, particularly with a 300-character chunk size, significantly improves retrieval metrics such as L2 distance and Answer Relevance. Implement and test this strategy in your RAG pipeline to enhance answer accuracy and relevance, especially with challenging linguistic data.

Key insights

Effective text chunking significantly improves RAG performance in low-resource, morphologically complex languages.

Principles

Method

Evaluate chunking strategies (Recursive, Khmer-Aware, Sentence-Based, LLM-Based) within RAG using BGE-M3 embeddings and FAISS, measuring L2 distance, Answer Relevance, Khmer Coverage, and Khmer IoU.

In practice

Topics

Best for: AI Engineer, Research Scientist, AI Scientist, Machine Learning Engineer, NLP Engineer

Related on AIssential

Open in AIssential →

Editorial summary, takeaway, and curation by AIssential. Original article published by Computation and Language.