Datasets:

Modalities:
Text
Formats:
parquet
ArXiv:
Libraries:
Datasets
pandas
huzaifahp7 commited on
Commit
31b2df4
·
verified ·
1 Parent(s): e91bb4b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +109 -2
README.md CHANGED
@@ -23,6 +23,113 @@ configs:
23
  - split: test
24
  path: main/test-*
25
  ---
26
- # Dataset Card for "Numclaim"
27
 
28
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  - split: test
24
  path: main/test-*
25
  ---
26
+ ## Dataset Card for “NumClaim: Numerical Claim Detection in Finance”
27
 
28
+ ### Table of Contents
29
+ 1. [Dataset Description](#dataset-description)
30
+ 2. [Supported Tasks](#supported-tasks)
31
+ 3. [Dataset Structure](#dataset-structure)
32
+ 4. [Data Fields](#data-fields)
33
+ 5. [Data Splits](#data-splits)
34
+ 6. [Dataset Creation](#dataset-creation)
35
+ 7. [Usage](#usage)
36
+ 8. [License](#license)
37
+ 9. [Citation](#citation)
38
+
39
+ ---
40
+
41
+ ### Dataset Description
42
+
43
+ **NumClaim** is a sentence‑level corpus for detecting **numerical claims** in financial text.
44
+ A sentence is labelled as **`INCLAIM`** if it expresses a forward‑looking or speculative financial forecast, and **`OUTOFCLAIM`** if it states factual past or present information.:contentReference[oaicite:0]{index=0} The dataset combines analyst reports and earnings‑call transcripts, enabling research on the influence of numerical forecasts on market reactions.:contentReference[oaicite:1]{index=1}
45
+
46
+ ---
47
+
48
+ ### Supported Tasks
49
+
50
+ | Task | Objective | Typical Metrics |
51
+ |------|-----------|-----------------|
52
+ | **Numerical Claim Classification** | Classify a sentence as `INCLAIM` or `OUTOFCLAIM`. | Accuracy, Precision, Recall, F1 |
53
+ | **Optimism Scoring** | Produce a continuous optimism score derived from claim likelihood (research use‑case in paper). | Spearman / Pearson correlation with returns |
54
+
55
+ ---
56
+
57
+ ### Dataset Structure
58
+
59
+ ```yaml
60
+ configs:
61
+ - config_name: main
62
+ data_files:
63
+ - split: train
64
+ path: main/train-*
65
+ - split: test
66
+ path: main/test-*
67
+ dataset_info:
68
+ features:
69
+ - context: string # Financial sentence
70
+ - response: string # Label: INCLAIM / OUTOFCLAIM
71
+ splits:
72
+ - name: train
73
+ num_examples: 2_144
74
+ num_bytes: 317_988
75
+ - name: test
76
+ num_examples: 537
77
+ num_bytes: 79_011
78
+ download_size: 208_114
79
+ dataset_size: 396_999
80
+ ```
81
+
82
+ ### Data Fields
83
+
84
+ | Field | Type | Description |
85
+ |---------|--------|-------------------------------------------------------------------|
86
+ | context | string | Sentence from an analyst report or earnings call. |
87
+ | response| string | `INCLAIM` or `OUTOFCLAIM` label. |
88
+
89
+ ---
90
+
91
+ ### Data Splits
92
+
93
+ | Split | # Sentences | Portion |
94
+ |-------|------------:|--------:|
95
+ | Train | 2 144 | 80 % |
96
+ | Test | 537 | 20 % |
97
+ | **Total** | **2 681** | **100 %** |
98
+
99
+ ---
100
+
101
+ ### Dataset Creation
102
+
103
+ - **Source Collection** – Analyst reports (Thomson Reuters) and quarterly earnings‑call transcripts for U.S. public firms (2010 – 2023).
104
+ - **Sentence Filtering** – Retained only sentences containing a financial term, numeric value, and currency/percentage symbol.
105
+ - **Annotation** – Weak‑supervision rules augmented with subject‑matter‑expert knowledge produced initial labels; a subset was manually validated.
106
+ - **Quality Control** – Manual spot‑checks achieved > 0.9 label accuracy, and noisy sentences were removed.
107
+
108
+ ---
109
+
110
+ ### Usage
111
+
112
+ ```python
113
+ from datasets import load_dataset
114
+
115
+ numclaim = load_dataset("numclaim", "main") # replace with actual repo ID
116
+ sample = numclaim["train"][0]
117
+
118
+ print(sample["context"])
119
+ print(sample["response"])
120
+ ```
121
+
122
+ ### License
123
+ Released under Creative Commons Attribution 4.0 International (CC BY 4.0).
124
+
125
+ ### Citation
126
+ ``` bibtex
127
+
128
+ @inproceedings{shah2024numclaim,
129
+ title = {Numerical Claim Detection in Finance: A New Financial Dataset, Weak-Supervision Model, and Market Analysis},
130
+ author = {Shah, Agam and Hiray, Arnav and Shah, Pratvi and Banerjee, Arkaprabha and Singh, Anushka and Eidnani, Dheeraj and Chava, Sahasra and Chaudhury, Bhaskar and Chava, Sudheer},
131
+ booktitle = {Findings of the Association for Computational Linguistics},
132
+ year = {2024},
133
+ url = {https://arxiv.org/abs/2402.11728}
134
+ }
135
+ ```