Commit
·
71ba84f
1
Parent(s):
73488ef
docs: Update readme
Browse files
README.md
CHANGED
|
@@ -1,3 +1,36 @@
|
|
| 1 |
---
|
| 2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
license:
|
| 5 |
+
- mit
|
| 6 |
+
source_datasets:
|
| 7 |
+
- original
|
| 8 |
+
tags:
|
| 9 |
+
- ocr
|
| 10 |
+
- text-detection
|
| 11 |
+
task_categories:
|
| 12 |
+
- image-detection
|
| 13 |
+
- image-segmentation
|
| 14 |
+
- optical-character-recognition
|
| 15 |
---
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
# School Notebooks Dataset
|
| 19 |
+
|
| 20 |
+
The images of school notebooks with handwritten notes in English.
|
| 21 |
+
|
| 22 |
+
The dataset annotation contain end-to-end markup for training detection and OCR models, as well as an end-to-end model for reading text from pages.
|
| 23 |
+
|
| 24 |
+
## Annotation format
|
| 25 |
+
|
| 26 |
+
The annotation is in COCO format. The `annotation.json` should have the following dictionaries:
|
| 27 |
+
|
| 28 |
+
- `annotation["categories"]` - a list of dicts with a categories info (categotiy names and indexes).
|
| 29 |
+
- `annotation["images"]` - a list of dictionaries with a description of images, each dictionary must contain fields:
|
| 30 |
+
- `file_name` - name of the image file.
|
| 31 |
+
- `id` for image id.
|
| 32 |
+
- `annotation["annotations"]` - a list of dictioraties with a murkup information. Each dictionary stores a description for one polygon from the dataset, and must contain the following fields:
|
| 33 |
+
- `image_id` - the index of the image on which the polygon is located.
|
| 34 |
+
- `category_id` - the polygon’s category index.
|
| 35 |
+
- `attributes` - dict with some additional annotation information. In the `translation` subdict you can find text translation for the line.
|
| 36 |
+
- `segmentation` - the coordinates of the polygon, a list of numbers - which are coordinate pairs x and y.
|