Data & Analytics
RAG.md · 63 documents
Metrics
This document outlines the evaluation metrics available for assessing the performance of Retrieval Augmented Generation (RAG) systems, particularly focusing on the retrieval and generation components. The implementations can be found in `datapizza/evaluation/metrics.py`.
Project Memory
**Last Updated:** 2026-01-29 22:00
Code Span Semantic Chunking Executive Summary
LLMC’s retrieval system must balance context relevance with token limitations, especially for large code
Text Splitting with LangChain
This document explains how to use LangChain's text splitters to divide documents into smaller chunks for better processing by Large Language Models (LLMs).
语义块切分 Semantic Chunking

rag-vector-chunking
The architecture you described is the standard setup for embedding-based retrieval in RAG systems:
语义块切分 Semantic Chunking
文本块切分是检索增强生成(RAG)中的关键步骤,其中将大文本体分割成有意义的段落以提高检索准确性。与固定长度块切分不同,语义块切分是根据句子之间的内容相似性来分割文本的。
Chunking Strategies
LLMs have context limits. You can't pass an entire 200-page SEC filing to an LLM for entity extraction. Documents must be broken into smaller pieces—**chunks**—that fit within processing limits.
Semantic Chunking
This document defines a proposed chunking and indexing strategy for semantic search in `pginbox`.
Chunking Fundamentals
<!-- markdownlint-disable-file MD029 MD036 MD026 -->
Chunking & Embeddings
This guide walks through the two building blocks of the GPT chat knowledge base:
ADR-0006: Paragraph-Boundary Chunking
**Date:** Retroactive
Late Chunking Strategy
**Late Chunking** is an advanced method for preparing long documents for retrieval systems, designed to overcome the critical problem of context loss that occurs in traditional document processing.
With Jina Embeddings v3
Late chunking is a technique where you embed the entire document first with a long-context embedding model, then chunk the resulting contextualized representations, rather than chunking text first then embedding each chunk independently.
Text Chunking - Anton (ChromaDB)
title: "Text Chunking Strategies for RAG Applications"
Text Chunking - Anton (ChromaDB)
title: "Text Chunking Strategies for RAG Applications"
embedding and chunking
임베딩 모델 입력에 문서 텍스트를 최대한 많이 넣는다고 검색 정확도가 떨어지지는 않는다. 다만 long-context 임베딩 모델은 문서 앞부분에 집중하는 경향이 있다. 제목이나 소개 같은 핵심 내용이 앞에 오기 때문인데, 문서 중간 내용을 놓칠 수 있다는 단점이 있다.
Search and Retrieval
This document describes the search and retrieval capabilities of RAG Modulo, including the 6-stage pipeline architecture, Chain of Thought reasoning, and advanced retrieval techniques.
Semantic Chunking
<!-- SEO: Explore semantic chunking for Retrieval Augmented Generation (RAG) in this comprehensive guide. Learn about embedding similarity, hierarchical clustering, and LLM-based methods for optimal text chunking. Discover how semantic chunking improves RAG performance compared to traditional rule-based approaches. Includes code examples, evaluation metrics, and comparisons using HotpotQA and SQUAD datasets with BAAI/bge-small-en-v1.5 embeddings.
Long Context Chunking
The long context chunking system automatically handles documents that exceed embedding model context limits by splitting them into manageable chunks and computing averaged embeddings.
Large-scale Document Retrieval with ElasticSearch
format_name: markdown
Introduction ot Information_Retrieval
**关键词**: 倒排索引 布尔模型 布尔查询的优化
Information Retrieval - Topic Modelling Relevent Part
* [Wiki - Information Retrieval](https://en.wikipedia.org/wiki/Information_retrieval)
lib-ai-app-community-rag
title: lib-ai-app-community-rag