Alex Strick van Linschoten commited on
Commit
e821f26
1 Parent(s): 02feb96

update description

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -174,9 +174,9 @@ def predict(pdf, confidence, generate_file):
174
  return text_output + redaction_analysis, images, report
175
 
176
 
177
- title = "Redaction Detector"
178
 
179
- description = "A classifier trained on publicly released redacted (and unredacted) FOIA documents, using [fastai](https://github.com/fastai/fastai)."
180
 
181
  with open("article.md") as f:
182
  article = f.read()
174
  return text_output + redaction_analysis, images, report
175
 
176
 
177
+ title = "Redaction Detector for PDFs"
178
 
179
+ description = "An MVP app for detection, extraction and analysis of PDF documents that contain redactions. Two models are used for this demo, both trained on publicly released redacted (and unredacted) FOIA documents. Classifcation model trained using [fastai](https://github.com/fastai/fastai) and the object detection model trained using [IceVision](https://airctic.com/0.12.0/)."
180
 
181
  with open("article.md") as f:
182
  article = f.read()