Iftesha commited on
Commit
d606d39
·
verified ·
1 Parent(s): af5714d

Add dataset card README

Browse files
Files changed (1) hide show
  1. README.md +10 -29
README.md CHANGED
@@ -1,38 +1,17 @@
1
  ---
2
  license: cc-by-4.0
3
  task_categories:
4
- - image-to-text
5
  language:
6
- - or
7
  tags:
8
- - ocr
9
- - odia
10
- - oriya
11
- - indic
12
- - benchmark
13
  size_categories:
14
- - n<1K
15
- dataset_info:
16
- features:
17
- - name: id
18
- dtype: int64
19
- - name: image
20
- dtype: image
21
- - name: ground_truth
22
- dtype: string
23
- - name: category
24
- dtype: string
25
- splits:
26
- - name: train
27
- num_bytes: 29793427
28
- num_examples: 223
29
- download_size: 29644398
30
- dataset_size: 29793427
31
- configs:
32
- - config_name: default
33
- data_files:
34
- - split: train
35
- path: data/train-*
36
  ---
37
 
38
  # Odia OCR Benchmark Dataset
@@ -45,6 +24,7 @@ including both short samples and long-text examples for OCR evaluation.
45
 
46
  ## Dataset Structure
47
 
 
48
  - **image**: The input image (PIL Image)
49
  - **ground_truth**: The correct Odia text transcription
50
  - **category**: Type of text (handwritten, printed, scene_text, newspaper, books, digital)
@@ -60,6 +40,7 @@ dataset = load_dataset("Iftesha/odia-ocr-benchmark")
60
 
61
  # Access a sample
62
  sample = dataset["train"][0]
 
63
  image = sample["image"]
64
  text = sample["ground_truth"]
65
  ```
 
1
  ---
2
  license: cc-by-4.0
3
  task_categories:
4
+ - image-to-text
5
  language:
6
+ - or
7
  tags:
8
+ - ocr
9
+ - odia
10
+ - oriya
11
+ - indic
12
+ - benchmark
13
  size_categories:
14
+ - n<1K
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  ---
16
 
17
  # Odia OCR Benchmark Dataset
 
24
 
25
  ## Dataset Structure
26
 
27
+ - **id**: Unique identifier for each sample
28
  - **image**: The input image (PIL Image)
29
  - **ground_truth**: The correct Odia text transcription
30
  - **category**: Type of text (handwritten, printed, scene_text, newspaper, books, digital)
 
40
 
41
  # Access a sample
42
  sample = dataset["train"][0]
43
+ sample_id = sample["id"]
44
  image = sample["image"]
45
  text = sample["ground_truth"]
46
  ```