surenreddy/object365
收藏Hugging Face2026-03-12 更新2026-03-29 收录
下载链接:
https://hf-mirror.com/datasets/surenreddy/object365
下载链接
链接失效反馈官方服务:
资源简介:
---
configs:
- config_name: default
data_files:
- split: train
path: data/train-*.parquet
- split: val
path: data/val-*.parquet
dataset_info:
features:
- name: image
dtype: image
- name: id
dtype: int32
- name: width
dtype: int32
- name: height
dtype: int32
- name: annotations
dtype: string
license: cc-by-4.0
task_categories:
- object-detection
tags:
- object365
- detection
- coco-format
---
# Objects365 Dataset
Objects365 detection dataset in HuggingFace parquet format.
## Schema
| Column | Type | Description |
|--------|------|-------------|
| image | Image | RGB image (PIL) |
| id | int32 | Image ID matching COCO annotation |
| width | int32 | Image width |
| height | int32 | Image height |
| annotations | string | JSON-serialized annotations list |
## Usage
```python
from datasets import load_dataset
ds = load_dataset("surenreddy/object365", split="train")
```
Annotations are available as COCO-format JSON files in the repo root:
- `zhiyuan_objv2_train.json`
- `zhiyuan_objv2_val.json`
提供机构:
surenreddy



