CompoundingAI commited on
Commit
8623f36
·
verified ·
1 Parent(s): e86d3f0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +114 -3
README.md CHANGED
@@ -1,3 +1,114 @@
1
- ---
2
- license: cc-by-nc-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ task_categories:
4
+ - question-answering
5
+ language:
6
+ - en
7
+ tags:
8
+ - finance
9
+ - indian-finance
10
+ - benchmark
11
+ - financial-qa
12
+ - llm-evaluation
13
+ pretty_name: IndFin-Bench
14
+ size_categories:
15
+ - n<1K
16
+ ---
17
+
18
+ # IndFin-Bench: A Benchmark Grounded in Indian Financial Filings
19
+
20
+ **IndFin-Bench** is a benchmark of 100 hand-curated questions sourced from the corporate filings of Indian listed companies. It is designed to evaluate how accurately LLMs can retrieve and reason over India-specific financial data.
21
+
22
+ Existing financial benchmarks like [FinBen](https://github.com/The-FinAI/PIXIU) and [FinQA](https://github.com/czyssrs/FinQA) are built on US market data — SEC filings, 10-K reports, and earnings calls from American corporations. **IndFin-Bench fills this gap for the Indian market**, covering the Ind AS accounting landscape, SEBI disclosure formats, and cross-company reasoning over BSE/NSE-listed equities.
23
+
24
+ ---
25
+
26
+ ## Dataset Summary
27
+
28
+ | | |
29
+ |---|---|
30
+ | **Questions** | 100 |
31
+ | **Companies** | 100+ Indian listed firms |
32
+ | **Coverage** | FY23 - FY26 |
33
+ | **Source** | Annual reports, quarterly filings, investor presentations, BSE/NSE disclosures |
34
+ | **License** | CC-BY-NC 4.0 (with additional restrictions; see below) |
35
+
36
+ ---
37
+
38
+ ## Schema
39
+
40
+ | Field | Description |
41
+ |---|---|
42
+ | `Question_Num` | Unique identifier for the question |
43
+ | `Question` | Natural-language financial query grounded in official filings |
44
+ | `Complexity_Category` | 4-tier taxonomy from single-company single-fact to multi-company multi-fact |
45
+ | `Atomic_Fact` | Verified ground truth answer, sourced directly from official filings |
46
+
47
+ ---
48
+
49
+ ## Complexity Levels
50
+
51
+ | Category | Questions | What it tests |
52
+ |---|---|---|
53
+ | Single-Company, Single Fact | 38 | Retrieve one specific figure from one company's filing |
54
+ | Single-Company, Multiple Facts | 33 | Retrieve and synthesise multiple data points from a single company |
55
+ | Multi-Company, Multiple Facts | 20 | Compare or derive metrics across multiple companies |
56
+ | Multi-Company, Single Fact | 9 | Retrieve comparable figures across companies and perform comparison |
57
+
58
+ ---
59
+
60
+ ## Usage
61
+
62
+ ```python
63
+ from datasets import load_dataset
64
+
65
+ ds = load_dataset("CompoundingAI/IndFin-Bench")
66
+ ```
67
+ ---
68
+
69
+ ## Ground Truth
70
+
71
+ Each question has a corresponding **Atomic Fact** — a precise, minimal statement of the correct answer derived directly from official company filings. Every atomic fact has been manually verified against primary filings.
72
+
73
+ ## Intended Use & Restrictions
74
+
75
+ This dataset is released under the **Creative Commons Attribution-NonCommercial 4.0 (CC BY-NC 4.0)** license.
76
+
77
+ **IndFin-Bench is strictly intended for evaluation and benchmarking of language models on Indian financial data.**
78
+
79
+ Typical allowed use cases include:
80
+ - Evaluating LLM performance on financial question answering
81
+ - Benchmarking retrieval-augmented generation (RAG) systems
82
+ - Comparing model accuracy across different complexity tiers
83
+
84
+ **Use of this dataset implies agreement with the following restrictions:**
85
+
86
+ - The dataset **must not be used for training, fine-tuning, or improving** any machine learning or AI models.
87
+ - This includes (but is not limited to):
88
+ - Supervised training
89
+ - Fine-tuning or instruction tuning
90
+ - Reinforcement learning (RL / RLHF)
91
+ - Retrieval-augmented training pipelines
92
+ - Synthetic data generation derived from this dataset
93
+
94
+ - The dataset must be used **only for evaluation purposes and not as a training corpus**.
95
+
96
+ ---
97
+ ## Citation
98
+
99
+ If you use IndFin-Bench in your work, please cite:
100
+
101
+ ```
102
+ @dataset{compoundingai2026indfinbench,
103
+ title={IndFin-Bench: A Pioneering Benchmark Grounded in Indian Financial Filings},
104
+ author={CompoundingAI},
105
+ year={2026},
106
+ url={https://huggingface.co/datasets/CompoundingAI/IndFin-Bench},
107
+ license={CC-BY-NC-4.0}
108
+ }
109
+ ```
110
+
111
+ ## Links
112
+
113
+ - [Blog Post](https://compoundingai.in/blog/indfin-bench)
114
+ - [CompoundingAI](https://compoundingai.in)