File size: 358 Bytes
31f23c0
 
 
33c4a73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
license: apache-2.0
---

Original from: https://huggingface.co/datasets/aisuko/funsd-layoutlmv3  
Adaptered by: Aisuko  
License: Apache-2.0

```python
dataset = load_dataset("aisuko/funsd-layoutlmv3")

# check the dataset
dataset

# check the features
dataset["train"].features

# check the first example
example=dataset["train"][0]
example["image"]
```