File size: 3,231 Bytes
9d1506f | 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 | ---
dataset_info:
config_name: default
features:
- name: image
dtype:
image:
decode: false
- name: text
dtype: string
- name: line_id
dtype: string
- name: line_reading_order
dtype: int64
- name: line_coords
dtype:
sequence:
sequence: int64
- name: line_baseline
dtype:
sequence:
sequence: int64
- name: line_augmentation
dtype: string
- name: region_id
dtype: string
- name: region_reading_order
dtype: int64
- name: region_type
dtype: string
- name: region_coords
dtype:
sequence:
sequence: int64
- name: filename
dtype: string
- name: project_name
dtype: string
- name: inference_20260702_103450_555442_model_fgho_trocr-hanseXVI-kurrent
dtype: string
splits:
- name: train
num_examples: 825
num_bytes: 123234367
download_size: 123234367
dataset_size: 123234367
configs:
- config_name: default
data_files:
- split: train
path: data/train/**/*.parquet
tags:
- image-to-text
- htr
- trocr
- inference
- pagexml
license: mit
---
# Dataset Card for test-bie-preprocessing-lines
This dataset is derived from [jwidmer/test-bie-preprocessing-lines](https://huggingface.co/datasets/jwidmer/test-bie-preprocessing-lines) and has been enriched with inference results.
## Dataset Summary
This dataset contains 825 samples across 1 split(s).
### Projects Included
1507-05-13_Hanserezess,_Lübeck_Ascensio_Domini_1507_(SAHST_Rep__2,_I_040-6)
## Duplicate Line Information
Duplicate line statistics are calculated from the dataset key columns `filename`, `region_id`, and `line_id`, plus `project_name` when project metadata is available.
Only original rows are counted here.
- Duplicate rows: 0
- Duplicate groups: 0
- Duplicate excess rows: 0
### Duplicate Lines by Split
- **train**: 0 duplicate rows, 0 duplicate groups, 0 duplicate excess rows
## Dataset Structure
### Data Splits
- **train**: 825 samples
### Dataset Size
- Approximate total size: 117.53 MB
- Total samples: 825
### Features
- **image**: `Image(mode=None, decode=False)`
- **text**: `Value('string')`
- **line_id**: `Value('string')`
- **line_reading_order**: `Value('int64')`
- **line_coords**: `List(List(Value('int64')))`
- **line_baseline**: `List(List(Value('int64')))`
- **line_augmentation**: `Value('string')`
- **region_id**: `Value('string')`
- **region_reading_order**: `Value('int64')`
- **region_type**: `Value('string')`
- **region_coords**: `List(List(Value('int64')))`
- **filename**: `Value('string')`
- **project_name**: `Value('string')`
- **inference_20260702_103450_555442_model_fgho_trocr-hanseXVI-kurrent**: `Value('string')`
## Data Organization
Data is organized as parquet shards by split and project:
```
data/
├── <split>/
│ └── <project_name>/
│ └── <timestamp>-<shard>.parquet
```
The HuggingFace Hub automatically merges all parquet files when loading the dataset.
## Usage
```python
from datasets import load_dataset
# Load entire dataset
dataset = load_dataset("jwidmer/test-bie-preprocessing-lines")
# Load specific split
dataset_split = load_dataset("jwidmer/test-bie-preprocessing-lines", split="train")
```
|