Upload 2 files
Browse files- README.md +24 -0
- dataset_infos.json +12 -0
README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
dataset_info:
|
| 3 |
+
features:
|
| 4 |
+
image: image
|
| 5 |
+
text: string
|
| 6 |
+
---
|
| 7 |
+
|
| 8 |
+
# Answer Scripts Dataset
|
| 9 |
+
|
| 10 |
+
This dataset contains handwritten answer scripts along with extracte code text.
|
| 11 |
+
|
| 12 |
+
## Structure
|
| 13 |
+
|
| 14 |
+
- `images/`: Contains scanned answer sheets.
|
| 15 |
+
- `annotations.parquet`: Contains corresponding text for each image.
|
| 16 |
+
|
| 17 |
+
## Usage
|
| 18 |
+
|
| 19 |
+
```python
|
| 20 |
+
from datasets import load_dataset
|
| 21 |
+
|
| 22 |
+
dataset = load_dataset("gopika13/answer_scripts")
|
| 23 |
+
print(dataset)
|
| 24 |
+
```
|
dataset_infos.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"default": {
|
| 3 |
+
"features": {
|
| 4 |
+
"image": {
|
| 5 |
+
"type": "image"
|
| 6 |
+
},
|
| 7 |
+
"text": {
|
| 8 |
+
"type": "string"
|
| 9 |
+
}
|
| 10 |
+
}
|
| 11 |
+
}
|
| 12 |
+
}
|