RAGChain Docs
  • Introduction
  • Quick Start
  • Installation
  • RAGchain Structure
    • File Loader
      • Dataset Loader
        • Ko-Strategy-QA Loader
      • Hwp Loader
      • Rust Hwp Loader
      • Win32 Hwp Loader
      • OCR
        • Nougat Loader
        • Mathpix Markdown Loader
        • Deepdoctection Loader
    • Text Spliter
      • Recursive Text Splitter
      • Markdown Header Splitter
      • HTML Header splitter
      • Code splitter
      • Token splitter
    • Retrieval
      • BM25 Retrieval
      • Hybrid Retrieval
      • Hyde Retrieval
      • VectorDB Retrieval
    • LLM
    • DB
      • MongoDB
      • Pickle DB
    • Reranker
      • BM25 Reranker
      • UPR Reranker
      • TART Reranker
      • MonoT5 Reranker
      • LLM Reranker
    • Benchmark
      • Auto Evaluator
      • Dataset Evaluators
        • Qasper
        • Ko-Strategy-QA
        • Strategy-QA
        • ms-marco
  • Utils
    • Query Decomposition
    • Evidence Extractor
    • Embedding
    • Slim Vector Store
      • Pinecone Slim
      • Chroma Slim
    • File Cache
    • Linker
      • Redis Linker
      • Dynamo Linker
      • Json Linker
    • REDE Search Detector
    • Semantic Clustering
  • Pipeline
    • BasicIngestPipeline
    • BasicRunPipeline
    • RerankRunPipeline
    • ViscondeRunPipeline
  • For Advanced RAG
    • Time-Aware RAG
    • Importance-Aware RAG
Powered by GitBook
On this page

Open-Domain Question Answering (ODQA) is a task in natural language processing that involves answering questions about any topic or domain, usually by selecting the answer from a large corpus of documents. ODQA systems are expected to understand the question, find relevant documents or passages, and extract an answer. So RAG workflow is popular for solving ODQA tasks.

The ODQA Dataset Loader is an essential component of our File Loader that facilitates the loading and processing of datasets used for training and evaluating ODQA systems. This loader is specifically designed to handle the unique structure and requirements of these datasets.

Functionality

The primary function of the ODQA Dataset Loader is to ingest datasets used in open-domain question answering tasks into your application. These datasets typically contain pairs of questions and their corresponding answers, often along with additional information such as context or source documents.

The loader parses these datasets, converting them into a standardized format (Document Objects) that can be easily manipulated for further processing like training machine learning models or evaluating system performance.

Last updated 1 year ago

  1. RAGchain Structure
  2. File Loader

Dataset Loader

PreviousFile LoaderNextKo-Strategy-QA Loader