File size: 1,057 Bytes
6ec94e7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
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`