davanstrien HF staff commited on
Commit
c7d1289
1 Parent(s): 920bc96

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -11,7 +11,13 @@ from toolz import pluck
11
  from piffle.image import IIIFImageClient
12
 
13
 
14
- DESCRIPTION = "# Identify illustrations in pages of historical books using their IIIF Manifest"
 
 
 
 
 
 
15
 
16
  HF_MODEL_PATH = (
17
  "ImageIN/levit-192_finetuned_on_unlabelled_IA_with_snorkel_labels"
 
11
  from piffle.image import IIIFImageClient
12
 
13
 
14
+ DESCRIPTION = """
15
+ **tl;dr** this project develops a machine learning model which can tell you whether a page of a historical book contains an illustration or not.
16
+
17
+ [IIIF](https://iiif.io/get-started/) is a standard for sharing images that many libraries, archives and museums use. One part of the IIIF standard is the [presentation API](https://iiif.io/api/presentation/3.0/) which defines a way of representing multiple images which make up a digitised physical item such as a book as a JSON document. This app allows you to pass the URL for one of these manifests and return all of the book pages containing illustrations.
18
+
19
+ You can read more about how we created the model and training data for this project in this [GitHub repository](https://github.com/davanstrien/ImageIN/)
20
+ """
21
 
22
  HF_MODEL_PATH = (
23
  "ImageIN/levit-192_finetuned_on_unlabelled_IA_with_snorkel_labels"