gopika13 commited on
Commit
146cbe3
·
verified ·
1 Parent(s): 4f44158

Upload 2 files

Browse files
Files changed (2) hide show
  1. README.md +24 -0
  2. 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
+ }