File size: 2,091 Bytes
99f6520 0b9e48e 99f6520 48822ee 0b9e48e 04b511c 48822ee 99f6520 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
---
license: apache-2.0
language:
- en
tags:
- rag
- long-context
- llm-search
- reasoning
- factuality
- retreival
- question-answering
- iterative-search
---
# FRAMES: Factuality, Retrieval, And reasoning MEasurement Set
FRAMES is a comprehensive evaluation dataset designed to test the capabilities of Retrieval-Augmented Generation (RAG) systems across factuality, retrieval accuracy, and reasoning.
## Dataset Overview
- 824 challenging multi-hop questions requiring information from 2-15 Wikipedia articles
- Questions span diverse topics including history, sports, science, animals, health, etc.
- Each question is labeled with reasoning types: numerical, tabular, multiple constraints, temporal, and post-processing
- Gold answers and relevant Wikipedia articles provided for each question
## Key Features
- Tests end-to-end RAG capabilities in a unified framework
- Requires integration of information from multiple sources
- Incorporates complex reasoning and temporal disambiguation
- Designed to be challenging for state-of-the-art language models
## Usage
This dataset can be used to:
- Evaluate RAG system performance
- Benchmark language model factuality and reasoning
- Develop and test multi-hop retrieval strategies
## Baseline Results
We provide baseline results using state-of-the-art models like Gemini-Pro-1.5-0514:
- Naive prompting: 40.8% accuracy
- BM25 retrieval (4 docs): 47.4% accuracy
- Oracle retrieval: 72.9% accuracy
- Multi-step retrieval & reasoning: 66% accuracy
## Citation
If you use this dataset in your research, please cite our paper:
```
@inproceedings{Krishna2024FactFA,
title={Fact, Fetch, and Reason: A Unified Evaluation of Retrieval-Augmented Generation},
author={Satyapriya Krishna and Kalpesh Krishna and Anhad Mohananey and Steven Schwarcz and Adam Stambler and Shyam Upadhyay and Manaal Faruqui},
year={2024},
url={https://api.semanticscholar.org/CorpusID:272753636}
}
```
We hope FRAMES will be useful for advancing RAG systems and language model capabilities. For more details, please refer to our full paper. |