aisuko/funsd-layoutlmv3
收藏Hugging Face2023-12-14 更新2024-03-04 收录
下载链接:
https://hf-mirror.com/datasets/aisuko/funsd-layoutlmv3
下载链接
链接失效反馈官方服务:
资源简介:
---
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"]
```
提供机构:
aisuko
原始信息汇总
数据集概述
- 原始来源: https://huggingface.co/datasets/aisuko/funsd-layoutlmv3
- 适配者: Aisuko
- 许可证: Apache-2.0
数据集加载与检查
- 加载数据集: 使用
load_dataset("aisuko/funsd-layoutlmv3")函数加载数据集。 - 检查数据集: 通过
dataset变量检查数据集。 - 检查特征: 通过
dataset["train"].features检查训练集的特征。 - 检查第一个示例: 通过
example=dataset["train"][0]获取并检查训练集的第一个示例,具体查看example["image"]。



