CoolFace
Datasetpublic

ZenitsuBorade/WixQA

WixQA: Enterprise RAG Question-Answering Benchmark 📄 Full Paper Available: For comprehensive details on dataset design, methodology, evaluation results, and analysis, please see our complete research paper: WixQA: A Multi-Dataset Benchmark for Enterprise Retrieval-Augmented Generation Cohen et al. (2025) - arXiv:2505.08643 Dataset Summary WixQA is a three-config collection for evaluating and training Retrieval-Augmented Generation (RAG) systems in enterprise… See the full description on the dataset page: https://huggingface.co/datasets/ZenitsuBorade/WixQA.

sourceHugging Facemitupdated 14d agoView on Hugging Face
0likes52downloads
Dataset Card

WixQA: Enterprise RAG Question-Answering Benchmark

📄 Full Paper Available: For comprehensive details on dataset design, methodology, evaluation results, and analysis, please see our complete research paper:

[WixQA: A Multi-Dataset Benchmark for Enterprise Retrieval-Augmented Generation](https://arxiv.org/abs/2505.08643)

Cohen et al. (2025) - arXiv:2505.08643

Dataset Summary

WixQA is a three-config collection for evaluating and training Retrieval-Augmented Generation (RAG) systems in enterprise customer-support scenarios:

ConfigPurposeScale
wixqa_expertwrittenAuthentic tickets + expert, step-by-step answers (multi-doc)200
wixqa_simulatedConcise answers distilled from user–expert chats (multi-doc)200
wixqa_syntheticLarge-scale LLM-extracted Q-A pairs (single-doc)6221
wix_kb_corpusFull Wix Help-Center snapshot for retrieval6221

All answers are grounded in the knowledge-base corpus and ExpertWritten + Simulated often require synthesis of multiple articles.

Paper

For full details on dataset design, creation and evaluation, see: Cohen et al. (2025). WixQA: A Multi-Dataset Benchmark for Enterprise Retrieval-Augmented Generation. arXiv: 2505.08643

Supported Tasks

  • —Retrieval-Augmented QA (all Q-A configs + corpus)
  • —Multi-Hop Reasoning (ExpertWritten & Simulated)
  • —Dense / Sparse Retrieval Benchmarking (article_ids serve as ground-truth)

Languages

English (US).

Dataset Structure

Data Fields

ConfigFieldTypeDescription
Q-A configsquestionstringEnd-user query
answerstringMarkdown answer
article_idslist[string]IDs of KB docs required to answer
KB corpusidstringUnique article ID (matches article_ids)
urlstringPublic Wix Help-Center URL
contentsstringFull HTML-stripped article text
article_typestringarticle \feature_request \known_issue

Dataset Creation

ExpertWritten

  • —Source: anonymised real support tickets.
  • —Answers: drafted and triple-reviewed by support experts (majority vote).

Simulated

  • —Source: user–expert chat logs → distilled to single-turn Q-A by GPT-4o.
  • —Validation: automatic filtering → 3-expert review → simulation replay.

Synthetic

  • —Source: each KB article passed through a type-specific GPT-4o prompt.
  • —Validation: sample manually verified (≥ 90 % accuracy) before full run.

KB Corpus

Snapshot date: 2024-12-02 (English-only).

Usage Example

python
from datasets import load_dataset

qa_ds = load_dataset("Wix/WixQA", "wixqa_expertwritten")
kb_ds = load_dataset("Wix/WixQA", "wix_kb_corpus")

# Example: map article IDs to actual documents
kb_lookup = {row["id"]: row for row in kb_ds}
sample = qa_ds[0]
docs = [kb_lookup[x]["contents"] for x in sample["article_ids"]]

Intended Uses

  • —Benchmark end-to-end RAG pipelines in procedural, enterprise contexts.
  • —Pre-train / fine-tune retrieval models on domain-specific language.
  • —Study hallucination vs. missing-context errors using article_ids.

Out-of-Scope Uses

  • —Generating personal, legal, or medical advice.
  • —Deanonymisation of user tickets.

Licensing

Released under the MIT License. Cite “Wix.com AI Research” when using the data.

Citation

bibtex
@misc{cohen2025wixqamultidatasetbenchmarkenterprise,
      title={WixQA: A Multi-Dataset Benchmark for Enterprise Retrieval-Augmented Generation}, 
      author={Dvir Cohen and Lin Burg and Sviatoslav Pykhnivskyi and Hagit Gur and Stanislav Kovynov and Olga Atzmon and Gilad Barkan},
      year={2025},
      eprint={2505.08643},
      archivePrefix={arXiv},
      primaryClass={cs.AI},
      url={https://arxiv.org/abs/2505.08643}, 
}

Contributions

Dataset engineered by the Wix AI Research team. External annotators are acknowledged in the paper.