File size: 1,407 Bytes
49b98dd | 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 | ---
license: mit
task_categories:
- text-generation
- token-classification
language:
- en
tags:
- finance
- xbrl
- numeric-tagging
- fintagging
size_categories:
- 1K<n<10K
configs:
- config_name: default
data_files:
- split: train
path: data/train.parquet
- split: test
path: data/test.parquet
---
# FinTagging Text Sentence Context Extraction Split
For non-table text inputs, the target is a JSON list of numeric entity/datatype pairs enriched with the sentence containing the matched numeric entity.
The dataset is derived from `FinTagging_800_200_HF` and preserves the original
train/test assignment by `source_sample_idx` and `context_id`. The XBRL concept
tag is intentionally omitted from the target.
## Splits
| Split | Samples | Output entries | Duplicate output key groups |
|---|---:|---:|---:|
| train | 304 | 765 | 1 |
| test | 81 | 168 | 0 |
## Columns
- `source_sample_idx`: original source row index.
- `context_id`: original context identifier.
- `split`: original split label.
- `input_type`: `table` or `text`.
- `input`: raw table HTML for table data, cleaned plain text for text data.
- `output`: JSON target string.
- `output_entities`: structured version of `output`.
- `entity_metadata`: deterministic parser metadata for auditing only.
## Validation
| Check | Value |
|---|---:|
| source sample index overlap | 0 |
| context ID overlap | 0 |
| passed | True |
|