simon-clmtd commited on
Commit
9b52dc7
Β·
verified Β·
1 Parent(s): 9a49dcc

Update app.py

Browse files

Improve wording

Files changed (1) hide show
  1. app.py +10 -8
app.py CHANGED
@@ -83,14 +83,16 @@ with gr.Blocks(title="OCR QA Demo") as demo:
83
 
84
  gr.Markdown(
85
  """
86
- # πŸ” OCR Quality Assessment Pipeline Demo
87
-
88
- **OCR Quality Assessment** demonstrates how text extracted from OCR (Optical Character Recognition)
89
- is analyzed in the **Impresso** project. This pipeline identifies OCR errors and
90
- assesses text quality, returning a score from 0.0 to 1.0.
91
-
92
- Try the example below (German text with typical OCR errors) or enter your own OCR text to see how it gets processed!
93
- """
 
 
94
  )
95
 
96
  with gr.Row():
 
83
 
84
  gr.Markdown(
85
  """
86
+ # πŸ” OCR Quality Assessment Demo
87
+
88
+ This demo showcases the **OCR Quality Assessment (OCRQA)** pipeline developed as part of the [Impresso Project](https://impresso-project.ch). The pipeline evaluates the quality of text extracted via **Optical Character Recognition (OCR)** by estimating the proportion of recognizable words.
89
+
90
+ It returns:
91
+ - a **quality score** between **0.0 (poor)** and **1.0 (excellent)**, and
92
+ - a list of **potential OCR errors** (unrecognized tokens).
93
+
94
+ You can try the example below (a German text containing typical OCR errors), or paste your own OCR-processed text to assess its quality.
95
+ """
96
  )
97
 
98
  with gr.Row():