--- license: mit task_categories: - table-question-answering - question-answering - visual-question-answering language: - en tags: - financial-qa - table-qa - chart-qa pretty_name: BB-FinQA-X size_categories: - n<1K --- # BB-FinQA-X **BB-FinQA-X** is a 500-item, expert-grounded question-answering benchmark built from the **Bangladesh Bank Annual Report, FY2024–25**, the central bank of Bangladesh's official yearly report on macroeconomic conditions, monetary policy, banking-sector supervision, and financial markets. Every question is paired with a literal, page-cited **evidence quote** from the source report, drawn from narrative text, statistical tables, and charts alike. This makes the dataset suitable for evaluating text-only, table-QA, chart-QA, and multimodal financial reasoning systems. ## Source material Bangladesh Bank publishes its Annual Report as public information; this dataset's questions and evidence are derived from the report's nine substantive chapters, listed below with their scope and item counts. **Official source:** [Bangladesh Bank Annual Report 2024–2025 (PDF)](https://www.bb.org.bd/pub/annual/anreport/ar2024-2025.pdf), published by Bangladesh Bank under its [Annual Report publications section](https://www.bb.org.bd/en/index.php/publication/publictn/0/2). | Chapter | Title | Items | Report pages | |---|---|---|---| | 1 | Macroeconomic Performance and Prospect | 50 | 1–11 | | 2 | Trends of the Real Sectors of Bangladesh Economy | 50 | 12–17 | | 3 | Price and Inflation | 50 | 18–24 | | 4 | Monetary Management | 50 | 25–32 | | 5 | Banking Sector Performance, Regulation and Bank Supervision | 60 | 33–52 | | 6 | Performance of Islamic Banking System (IBS) in Bangladesh | 60 | 53–63 | | 7 | Sustainable and Inclusive Banking | 60 | 64–78 | | 8 | Performance, Regulation and Supervision of Finance Companies (FCs) | 60 | 79–84 | | 9 | Financial Market | 60 | 85–98 | ## Data fields Each item is a flat JSON object with the following fields: | Field | Type | Description | |---|---|---| | `id` | string | Unique identifier, `chapter_-q` | | `number` | integer | Question number within its chapter | | `chapter` | string | Chapter label, e.g. `"Chapter 5"` | | `chapter_title` | string | Full chapter title as printed in the report | | `question` | string | The natural-language question | | `answer` | string | The gold answer | | `evidence` | string | Literal, page-cited quote(s) and/or table/chart cell values from the source report that support the answer — the grounding a system should be able to cite | | `query_type` | string | The **data category** — see [Taxonomy 2](#taxonomy-2-query_type--data-category) | | `presentation_format` | string | The **data handling format** — see [Taxonomy 1](#taxonomy-1-presentation_format--data-handling-format) | | `difficulty` | string | `Easy`, `Medium`, or `Hard` | | `source_page` | string | Report page number(s) the evidence appears on (may be a range, e.g. `"33-34"`) | ### Example ```json { "id": "chapter_5-q11", "number": 11, "chapter": "Chapter 5", "chapter_title": "Banking Sector Performance, Regulation and Bank Supervision", "question": "Compare the composition of aggregate industry assets between June 2024 and March 2025 in terms of the loans and advances share and the government bills and bonds share.", "answer": "The loans and advances share was essentially unchanged — 63.6 percent (BDT 17,112.67 billion) in June 2024 versus 63.5 percent (BDT 17,114.88 billion, or 63.51 percent per paragraph 5.06) in March 2025 — and the government bills and bonds share held at 17.7 percent (BDT 4,749.23 billion in June 2024 and BDT 4,763.46 billion in March 2025).", "evidence": "Para 5.06: \"The aggregate banking sector assets consisted of BDT 17,114.88 billion in loans and advances (63.51 percent of total assets) ... BDT 4,763.46 billion as investments in government bills and bonds (treasury securities) ... (Chart 5.01).\" Chart 5.01: June 2024 — Loans & Advances 17112.67 (63.6%), Govt. bills & bond 4749.23 (17.7%); March 2025 — Loans & Advances 17114.88 (63.5%), Govt. bills & bond 4763.46 (17.7%).", "query_type": "Comparison", "presentation_format": "Text + Chart", "difficulty": "Medium", "source_page": "33-34" } ``` ## Two independent taxonomies BB-FinQA-X labels every item along **two orthogonal axes**. They answer different questions about each item and should not be conflated: - `presentation_format` — **how** the supporting evidence is presented on the page (its modality) - `query_type` — **what kind of reasoning** the question demands of a system A single item always has exactly one value from each axis — e.g. an item can be `presentation_format: "Table Only"` *and* `query_type: "Numerical Calculation"` at the same time, because the two labels describe different things about it. ### Taxonomy 1 — `presentation_format` (data handling format) Describes the modality of the evidence a system must read and combine to answer the question. | Value | Meaning | Count | |---|---|---| | `Text Only` | Evidence is entirely narrative prose (a report paragraph) | 100 | | `Table Only` | Evidence is entirely a statistical table cell / row | 100 | | `Chart Only` | Evidence is entirely a chart (bar, line, or pie) reading | 50 | | `Text + Table` | Answering requires combining narrative text with a table | 150 | | `Text + Chart` | Answering requires combining narrative text with a chart | 50 | | `Table + Chart` | Answering requires combining a table with a chart | 50 | This axis is what makes the dataset useful for benchmarking **document/table/chart QA** systems specifically: a model that only handles plain text will be unable to answer the 250 items whose `presentation_format` includes a table or chart. ### Taxonomy 2 — `query_type` (data category) Describes the reasoning operation the question requires, independent of where the evidence lives. | Value | Meaning | Count | |---|---|---| | `Fact Extraction` | Retrieve a single stated fact/figure directly | 150 | | `Comparison` | Compare two or more values (e.g. across years, sectors, or entities) | 135 | | `Trend Analysis` | Characterize a movement/direction over a time series | 65 | | `Numerical Calculation` | Compute a derived value (difference, ratio, sum) not stated verbatim | 60 | | `Multi-hop Reasoning` | Chain together facts from more than one paragraph/table/chart | 50 | | `Evidence Retrieval` | Identify/locate the specific evidence span supporting a claim | 40 | This axis is what makes the dataset useful for benchmarking **reasoning depth**, independent of modality — e.g. comparing how a model's accuracy on `Fact Extraction` degrades on `Multi-hop Reasoning` items that require chaining evidence across sources. ### Difficulty (a third, coarser label) `difficulty` (`Easy` / `Medium` / `Hard`) is a holistic difficulty rating assigned per item and is correlated with, but not derived purely from, the two taxonomies above (e.g. a `Table Only` item can still be `Hard` if it requires spotting a subtle row among many similar ones). | Value | Count | |---|---| | Easy | 175 | | Medium | 250 | | Hard | 75 | ## Intended uses - Evaluating retrieval-augmented generation (RAG) and long-context QA systems on real-world, multimodal financial documents. - Benchmarking table-QA and chart-QA models on central-bank statistical tables and charts, using `presentation_format` to select modality-specific subsets. - Studying multi-hop numerical and comparative reasoning over financial narratives, using `query_type` to select reasoning-specific subsets. - Evaluating faithfulness/grounding (i.e., whether a system's answer is actually supported by its cited evidence) using the `evidence` field as ground truth. ## Licensing This dataset (questions, answers, and evidence annotations) is released under the **MIT License**. The underlying source document, the [Bangladesh Bank Annual Report FY2024–25](https://www.bb.org.bd/pub/annual/anreport/ar2024-2025.pdf), is a public publication of Bangladesh Bank; users should consult Bangladesh Bank's own terms for the source report itself. ## Citation If you use this dataset, please cite: ```bibtex @misc{faria2026clairfinadversarialmultiagentframework, title={CLAIR-Fin: An Adversarial Multi-Agent Framework for Claim-Level Verification and Adaptive Debate in Cross-Modal Financial QA}, author={Fatema Tuj Johora Faria and Mukaffi Bin Moin and Jubayer Al Mahmud and M. F. Mridha and Md. Alam Hossain}, year={2026}, eprint={2608.13706}, archivePrefix={arXiv}, primaryClass={cs.CL}, url={https://arxiv.org/abs/2608.13706}, } ``` ## Contact Maintained by Fatema Tuj Johora Faria (fatema.faria142@gmail.com) and Mukaffi Bin Moin (mukaffi28@gmail.com). For questions, corrections, or issues, please open a discussion on the dataset's Hugging Face repository.