File size: 7,088 Bytes
23c5c2c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
# coding=utf-8
import json
import os
import csv
import re

import datasets

from PIL import Image
import numpy as np

logger = datasets.logging.get_logger(__name__)


_CITATION = """\

@inproceedings{yu2021pick,

               title={PICK: Processing key information extraction from documents using improved graph learning-convolutional networks},

               author={Yu, Wenwen and Lu, Ning and Qi, Xianbiao and Gong, Ping and Xiao, Rong},

               booktitle={2020 25th International Conference on Pattern Recognition (ICPR)},

               pages={4363--4370},

               year={2021},

               organization={IEEE}

}

"""
_DESCRIPTION = """\

The train ticket is fixed layout dataset, however, it contains background noise and imaging distortions.

It contains 1,530 synthetic images and 320 real images for training, and 80 real images for testing.

Every train ticket has eight key text fields including ticket number, starting station, train number, destination station, date, ticket rates, seat category, and name.

This dataset mainly consists of digits, English characters, and Chinese characters.

"""

_URL = """\

https://drive.google.com/file/d/1o8JktPD7bS74tfjz-8dVcZq_uFS6YEGh/view?usp=sharing

"""


def load_image(image_path):
    image = Image.open(image_path).convert("RGB")
    w, h = image.size
    return image, (w, h)


def normalize_bbox(bbox, size):
    return [
        int(1000 * bbox[0] / size[0]),
        int(1000 * bbox[1] / size[1]),
        int(1000 * bbox[2] / size[0]),
        int(1000 * bbox[3] / size[1]),
    ]


class TrainTicketsConfig(datasets.BuilderConfig):
    """BuilderConfig for train_tickets"""

    def __init__(self, **kwargs):
        """BuilderConfig for train_tickets.



        Args:

          **kwargs: keyword arguments forwarded to super.

        """
        super(TrainTicketsConfig, self).__init__(**kwargs)


class TrainTickets(datasets.GeneratorBasedBuilder):
    """train tickets"""

    BUILDER_CONFIGS = [
        TrainTicketsConfig(
            name="train_tickets-yu2020pick",
            version=datasets.Version("1.0.0"),
            description="Chinese train tickets",
        ),
    ]

    def _info(self):
        return datasets.DatasetInfo(
            description=_DESCRIPTION,
            features=datasets.Features(
                {
                    "id": datasets.Value("string"),
                    "words": datasets.Sequence(datasets.Value("string")),
                    "bboxes": datasets.Sequence(
                        datasets.Sequence(datasets.Value("int64"))
                    ),
                    "ner_tags": datasets.Sequence(
                        datasets.features.ClassLabel(
                            names=[
                                "O",
                                "S-DATE",
                                "S-DESTINATION_STATION",
                                "S-NAME",
                                "S-SEAT_CATEGORY",
                                "S-STARTING_STATION",
                                "S-TICKET_NUM",
                                "S-TICKET_RATES",
                                "S-TRAIN_NUM",
                            ]
                        )
                    ),
                    "image_path": datasets.Value("string"),
                }
            ),
            supervised_keys=None,
            homepage="https://github.com/wenwenyu/PICK-pytorch",
            citation=_CITATION,
        )

    def _split_generators(self, dl_manager):
        """Returns SplitGenerators."""
        downloaded_file = dl_manager.download_and_extract(
            "https://drive.google.com/uc?export=download&id=1o8JktPD7bS74tfjz-8dVcZq_uFS6YEGh"
        )
        return [
            datasets.SplitGenerator(
                name=datasets.Split.TRAIN,
                gen_kwargs={
                    "filelist": f"{downloaded_file}/train_tickets/synth1530_real320_baseline_trainset.csv"
                },
            ),
            datasets.SplitGenerator(
                name=datasets.Split.TEST,
                gen_kwargs={
                    "filelist": f"{downloaded_file}/train_tickets/real80_baseline_testset.csv"
                },
            ),
        ]

    # based on https://github.com/wenwenyu/PICK-pytorch/blob/master/data_utils/documents.py#L229
    def _read_gt_file_with_box_entity_type(self, filepath: str):
        with open(filepath, "r", encoding="utf-8") as f:
            document_text = f.read()

        # match pattern in document: index,x1,y1,x2,y2,x3,y3,x4,y4,transcript,box_entity_type
        regex = (
            r"^\s*(-?\d+)\s*,\s*(-?\d+\.?\d*)\s*,\s*(-?\d+\.?\d*)\s*,\s*(-?\d+\.?\d*)\s*,\s*(-?\d+\.?\d*)\s*,"
            r"\s*(-?\d+\.?\d*)\s*,\s*(-?\d+\.?\d*)\s*,\s*(-?\d+\.?\d*)\s*,\s*(-?\d+\.?\d*)\s*,(.*),(.*)\n?$"
        )

        matches = re.finditer(regex, document_text, re.MULTILINE)

        res = []
        for _, match in enumerate(matches, start=1):
            points = [int(match.group(i)) for i in range(2, 10)]
            x = points[0:8:2]
            y = points[1:8:2]
            x1 = min(x)
            y1 = min(y)
            x2 = max(x)
            y2 = max(y)
            transcription = str(match.group(10))
            entity_type = str(match.group(11))
            res.append((x1, y1, x2, y2, transcription, entity_type))
        return res

    def _generate_examples(self, filelist):
        logger.info("⏳ Generating examples from = %s", filelist)

        ann_dir = os.path.join(os.path.dirname(filelist), "boxes_trans")
        img_dir = os.path.join(os.path.dirname(filelist), "images1930")
        print(ann_dir)

        with open(filelist) as csv_file:
            csv_reader = csv.reader(csv_file, delimiter=",")
            for row in csv_reader:
                guid = row[0]
                # document_type = row[1]
                filename = row[2]

                words = []
                bboxes = []
                ner_tags = []
                file_path = os.path.join(ann_dir, f"{filename}.tsv")
                data = self._read_gt_file_with_box_entity_type(file_path)
                image_path = os.path.join(img_dir, f"{filename}.jpg")
                _, size = load_image(image_path)
                for item in data:
                    box = item[0:4]
                    transcription, label = item[4:6]
                    words.append(transcription)
                    bboxes.append(normalize_bbox(box, size))
                    if label == "other":
                        ner_tags.append("O")
                    else:
                        ner_tags.append("S-" + label.upper())
                yield guid, {
                    "id": str(guid),
                    "words": words,
                    "bboxes": bboxes,
                    "ner_tags": ner_tags,
                    "image_path": image_path,
                }