Datasets:
Modalities:
Text
Languages:
English
Size:
1K<n<10K
Tags:
financial-nlp
sec-filings
xbrl
numerical-reasoning
citation-grounding
retrieval-augmented-generation
License:
File size: 4,007 Bytes
571ed33 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "EDGARCalcQA benchmark example",
"description": "Schema summary for EDGARCalcQA expanded 513-example release records.",
"type": "object",
"required": [
"id",
"company",
"ticker",
"question_type",
"question",
"answer_numeric",
"answer_display",
"unit",
"gold_concepts",
"gold_period",
"form",
"filed",
"derivation",
"gold_evidence",
"gold_exact",
"accepted_numeric_forms",
"support_units",
"accepted_support_paths"
],
"properties": {
"accepted_numeric_forms": {
"types": [
"array"
],
"required": true,
"present_in_examples": 513,
"description": "Accepted rounded/display-equivalent numeric forms."
},
"accepted_support_paths": {
"types": [
"array"
],
"required": true,
"present_in_examples": 513,
"description": "Valid support-unit paths for relaxed citation scoring."
},
"answer_display": {
"types": [
"string"
],
"required": true,
"present_in_examples": 513,
"description": "Human-readable gold answer."
},
"answer_numeric": {
"types": [
"number"
],
"required": true,
"present_in_examples": 513,
"description": "Gold numeric answer used for scoring."
},
"company": {
"types": [
"string"
],
"required": true,
"present_in_examples": 513,
"description": "Company name."
},
"derivation": {
"types": [
"null",
"object"
],
"required": true,
"present_in_examples": 513,
"description": "Structured derivation inputs and formula metadata."
},
"filed": {
"types": [
"string"
],
"required": true,
"present_in_examples": 513,
"description": "Filing date."
},
"form": {
"types": [
"string"
],
"required": true,
"present_in_examples": 513,
"description": "SEC filing form type."
},
"gold_concepts": {
"types": [
"array"
],
"required": true,
"present_in_examples": 513,
"description": "XBRL concept names used to derive the answer."
},
"gold_evidence": {
"types": [
"array"
],
"required": true,
"present_in_examples": 513,
"description": "Gold evidence passage metadata from filing text."
},
"gold_exact": {
"types": [
"object"
],
"required": true,
"present_in_examples": 513,
"description": "Canonical exact gold value metadata."
},
"gold_period": {
"types": [
"object"
],
"required": true,
"present_in_examples": 513,
"description": "Fiscal period metadata for the answer."
},
"id": {
"types": [
"string"
],
"required": true,
"present_in_examples": 513,
"description": "Stable benchmark example identifier."
},
"question": {
"types": [
"string"
],
"required": true,
"present_in_examples": 513,
"description": "Natural-language question."
},
"question_type": {
"types": [
"string"
],
"required": true,
"present_in_examples": 513,
"description": "Task family: value_lookup, derived_ratio, or temporal_comparison."
},
"support_units": {
"types": [
"array"
],
"required": true,
"present_in_examples": 513,
"description": "Evaluation support units for relaxed citation scoring."
},
"ticker": {
"types": [
"string"
],
"required": true,
"present_in_examples": 513,
"description": "Company ticker symbol."
},
"unit": {
"types": [
"string"
],
"required": true,
"present_in_examples": 513,
"description": "Answer unit or scale."
}
}
}
|