This repository contains a Python package designed for efficient and modular processing. Currently, it includes the following subpackages:
- Language Identification Pipeline: Pipeline that automatically detects the language of input text and provides its corresponding probability score.
- OCR QA Pipeline: Pipeline that evaluates the quality of OCR-processed text by calculating a score (0-1) representing the proportion of recognized words in the input text against a language-specific Bloom filter database.
To install the package, use:
pip install impresso_pipelines
Import and use the subpackages as follows:
from impresso-pipelines.langident import LangIdentPipeline
from impresso-pipelines.ocrqa import OCRQAPipeline
# Initialize the pipeline
lang_pipeline = LangIdentPipeline()
# Example text in German
de_text = "Ein kleiner Hund namens Max lebte in einem ruhigen Dorf. Jeden Tag rannte er durch die Straßen und spielte mit den Kindern. Eines Tages fand er einen geheimen Garten, den niemand kannte. Max entschied sich, den Garten zu erkunden und entdeckte viele schöne Blumen und Tiere. Von diesem Tag an besuchte er den Garten jeden Nachmittag."
# Detect language
result = lang_pipeline(de_text)
print(result)
Expected Output:
{'language': 'de', 'score': 1.0}
Score represents the probability of the detected language based on the input text.
# Initialize the pipeline
ocrqa_pipeline = OCRQAPipeline()
# Example text extracted from OCR
de_text = "Ein kleiner Hund namens Max lebte in einem ruhigen Dorf. Jeden Tag rannte er durch die Straßen und spielte mit den Kindern. Eines Tages fand er einen geheimen Garten, den niemand kannte. Max entschied sich, den Garten zu erkunden und entdeckte viele schöne Blumen und Tiere. Von diesem Tag an besuchte er den Garten jeden Nachmittag."
# Get an answer
result = ocrqa_pipeline(de_text)
print(result)
Expected Output:
{'language': 'de', 'score': 1.0}
Score roughly represents the ratio between known and unknown words in the text in comparison to the language-specific Bloom filter database.
For more examples, please take a look at documentation notebooks langident_pipeline_demo.ipynb and ocrqa_pipeline_demo.ipynb.
More pipelines and subpackages will be added to enhance functionality and broaden use cases. Stay tuned!
Impresso - Media Monitoring of the Past is an interdisciplinary research project that aims to develop and consolidate tools for processing and exploring large collections of media archives across modalities, time, languages and national borders. The first project (2017-2021) was funded by the Swiss National Science Foundation under grant No. CRSII5_173719 and the second project (2023-2027) by the SNSF under grant No. CRSII5_213585 and the Luxembourg National Research Fund under grant No. 17498891.
Copyright (C) 2024 The Impresso team.
This program is provided as open source under the GNU Affero General Public License v3 or later.