The dataset viewer is not available for this split.
Server error while post-processing the split rows. Please report the issue.
Error code:   RowsPostProcessingError

Need help to make the dataset viewer work? Open a discussion for direct support.

Funds Report Front Page Entities (FRFPE) is a dataset for document understanding and token classification. It contains 356 titles/front pages of annual and semi-annual reports as well as extracted text and annotations for five different token categories.

FRFPE serves as an example of how to train and evaluate multimodal models such as LayoutLM using the deepdoctection framework on a custom dataset.

FRFPE contains documents in three different languages

  • english: 167
  • german: 149
  • french: 9

as well as the token categories:

  • report_date (1096 samples) - reporting date of the report
  • report_type (738 samples) - annual/semi-annual report
  • umbrella (912 samples) - fund issued as umbrella
  • fund_name (2122 samples) - Subfund, as part of an umbrella fund or standalone fund
  • other (12903 samples) - None of the above categories

The annotations have been made to the best of our knowledge and belief, but there is no claim on correctness.

Some cursory notes:

  • The images were created by converting PDF files. A resolution of 300 dpi was applied during the conversion.
  • The text was extracted from the PDF file using PDFPlumber. In some cases the PDF contains embedded images, which in turn contain text, such as corporate names. These are not extracted and are therefore not taken into account.
  • The annotation was carried out with the annotation tool Prodigy.
  • The category report_date is self-explanatory. report_type was used to indicate whether the report is an annual semi-annual report or a report in a different cycle.
  • umbrella/fund_name is the classification of any token that is part of a fund name that represents either an umbrella, subfund or individual fund. The distinction between whether a fund represents an umbrella, or single fund is not always apparent from the context of the document, which makes the classification particularly challenging. In order to remain correct in the annotation, information from the Bafin database was used for cases that could not be clarified from the context.

To explore the dataset we suggest to use deepdoctection. Place the unzipped folder in the **deep**doctection ~/.cache/datasets folder.

import deepdoctection as dd
from pathlib import Path

@dd.object_types_registry.register("ner_first_page")
class FundsFirstPage(dd.ObjectTypes):

    report_date = "report_date"
    umbrella = "umbrella"
    report_type = "report_type"
    fund_name = "fund_name"

dd.update_all_types_dict()

path = Path("~/.cache/datasets/fund_ar_front_page/40952248ba13ae8bfdd39f56af22f7d9_0.json")

page = dd.Page.from_file(path)
page.image =  dd.load_image_from_file(path.parents[0]  / "image" / page.file_name.replace("pdf","png"))

page.viz(interactive=True,show_words=True)  # close interactive window with q

for word in page.words:
    print(f"text: {word.characters}, token class: {word.token_class}")
Downloads last month
0
Edit dataset card