File size: 1,964 Bytes
582afb8 | 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 | ---
license: mit
task_categories:
- text-generation
- token-classification
language:
- en
tags:
- finance
- xbrl
- numeric-tagging
- concept-tagging
- fintagging
configs:
- config_name: default
data_files:
- split: test
path: data/test.parquet
---
# FinTagging Context-Aware Concept Tagging Test Set
This dataset combines the table-context and text-context test splits derived
from `FinTagging_800_200_HF`. It is intended for the second tagging step: given
an extracted numeric entity, datatype, local context, and original context,
predict the valid XBRL concept tag or tags.
Identical inputs are grouped. If the same input maps to multiple valid concepts,
the target is a JSON list containing all ground-truth concepts.
## Splits
| Split | Rows | Source occurrences | Table rows | Text rows | Multi-tag inputs |
|---|---:|---:|---:|---:|---:|
| test | 2,509 | 2,520 | 2,341 | 168 | 11 |
## Columns
- `source_sample_idx`: original source row index.
- `context_id`: original context identifier.
- `split`: always `test`.
- `input_type`: `table` or `text`.
- `input`: JSON string containing the model input fields.
- `input_fields`: structured version of `input`.
- `output`: JSON list of ground-truth XBRL concept tags.
- `ground_truth_concepts`: structured version of `output`.
- `ground_truth_count`: number of unique valid concepts for the input.
- `source_entity_indices`: original `numeric_entities` indices grouped into this row.
- `source_match_statuses`: first-stage parser match statuses for audit only.
- `source_occurrence_count`: number of source entity occurrences grouped into this row.
## Input Format
For table inputs, `input_fields` contains:
```json
{"numeric_entity": "...", "datatype": "...", "row_context": "...", "column_context": "...", "original_context": "..."}
```
For text inputs, `input_fields` contains:
```json
{"numeric_entity": "...", "datatype": "...", "sentence_context": "...", "original_context": "..."}
```
|