File size: 1,588 Bytes
cd9a8f0
 
5032c71
 
 
 
 
 
 
 
 
 
 
cd9a8f0
5032c71
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
---

license: apache-2.0
task_categories:
- image-classification
language:
- en
tags:
- Document
- Classification
- Type-9
- finance
size_categories:
- 10K<n<100K
---


# **Document-Type-Detection**


## Dataset Summary

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.

## Supported Tasks

- **Multiclass Document Classification**
  Classify an input document image into one of the predefined document types.

- **Dataset Type:** Image Classification
- **Task:** Document Type Detection (Multiclass)
- **License:** Apache 2.0

Each document class is stored in its corresponding folder.

## Dataset Structure

| Feature | Type     | Description                            |
| ------- | -------- | -------------------------------------- |
| image   | Image    | Document image (variable resolution)   |
| label   | Category | Integer from 0 to 8 representing class |

**Split:**

* `train`: Full dataset in a single training split.

## Example Usage

```python

from datasets import load_dataset



dataset = load_dataset("prithivMLmods/Document-Type-Detection")

sample = dataset["train"][0]

image = sample["image"]

label = sample["label"]

```

## License

This dataset is distributed under the [Apache 2.0 License](https://www.apache.org/licenses/LICENSE-2.0).