prithivMLmods commited on
Commit
5032c71
·
verified ·
1 Parent(s): 2ad3688

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +55 -0
README.md CHANGED
@@ -1,3 +1,58 @@
1
  ---
2
  license: apache-2.0
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ task_categories:
4
+ - image-classification
5
+ language:
6
+ - en
7
+ tags:
8
+ - Document
9
+ - Classification
10
+ - Type-9
11
+ - finance
12
+ size_categories:
13
+ - 10K<n<100K
14
  ---
15
+
16
+ # **Document-Type-Detection**
17
+
18
+
19
+ ## Dataset Summary
20
+
21
+ The **Document-Type-Detection** dataset is a large-scale image classification dataset consisting of scanned or photographed document images. Each image is categorized into one of nine document types. This dataset is ideal for training document classification models in finance, administration, OCR, and automation workflows.
22
+
23
+ ## Supported Tasks
24
+
25
+ - **Multiclass Document Classification**
26
+ Classify an input document image into one of the predefined document types.
27
+
28
+ - **Dataset Type:** Image Classification
29
+ - **Task:** Document Type Detection (Multiclass)
30
+ - **License:** Apache 2.0
31
+
32
+ Each document class is stored in its corresponding folder.
33
+
34
+ ## Dataset Structure
35
+
36
+ | Feature | Type | Description |
37
+ | ------- | -------- | -------------------------------------- |
38
+ | image | Image | Document image (variable resolution) |
39
+ | label | Category | Integer from 0 to 8 representing class |
40
+
41
+ **Split:**
42
+
43
+ * `train`: Full dataset in a single training split.
44
+
45
+ ## Example Usage
46
+
47
+ ```python
48
+ from datasets import load_dataset
49
+
50
+ dataset = load_dataset("prithivMLmods/Document-Type-Detection")
51
+ sample = dataset["train"][0]
52
+ image = sample["image"]
53
+ label = sample["label"]
54
+ ```
55
+
56
+ ## License
57
+
58
+ This dataset is distributed under the [Apache 2.0 License](https://www.apache.org/licenses/LICENSE-2.0).