yuxbao/ask-accounting-rag-retrieval-golden-set
Ask Accounting RAG Retrieval Golden Test Set This private dataset evaluates citation retrieval for the Ask Accounting RAG service. Each case contains a question, the evidence that must be retrieved, the factual claims that a correct answer must support, and a citation rule. It is a regression test set, not model-training data. Cases remain in candidate status until a domain owner has reviewed the question, evidence, and expected claims. Only approved cases should gate a release.… See the full description on the dataset page: https://huggingface.co/datasets/yuxbao/ask-accounting-rag-retrieval-golden-set.
Ask Accounting RAG Retrieval Golden Test Set
This private dataset evaluates citation retrieval for the Ask Accounting RAG service. Each case contains a question, the evidence that must be retrieved, the factual claims that a correct answer must support, and a citation rule.
It is a regression test set, not model-training data. Cases remain in candidate status until a domain owner has reviewed the question, evidence, and expected claims. Only approved cases should gate a release.
Coverage
The dataset contains 25 cases, with five cases for each UI source group:
Data Fields
CD SOCOS evidence uses collection and document_title because the current SOCOS ingestion payload does not retain document deep links. R3 BR similarly uses collection/title evidence because its indexed corpus is not currently represented by a sys_data_source record.
Loading
from datasets import load_dataset
dataset = load_dataset(
"yuxbao/ask-accounting-rag-retrieval-golden-set",
split="test",
)Evaluation Protocol
- Select the case's
source_groupin Ask Accounting. - Submit the
questionusing the normal RAG request path. - Collect returned citations and compare them with
required_evidence. - Mark the retrieval as passed only when the
citation_ruleis satisfied. - Separately evaluate the generated answer against
expected_claims. - Persist the run result, application version, and corpus sync timestamp in an internal results store. Do not write production user chats or credentials into this dataset.
Governance
This repository is private because it contains internal document references and business-process facts. Do not upload document bodies, user conversation data, access tokens, passwords, or other credentials.
