surenreddy commited on
Commit
6ec94e7
·
verified ·
1 Parent(s): 771ca0e

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +54 -0
README.md ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ configs:
3
+ - config_name: default
4
+ data_files:
5
+ - split: train
6
+ path: data/train-*.parquet
7
+ - split: val
8
+ path: data/val-*.parquet
9
+ dataset_info:
10
+ features:
11
+ - name: image
12
+ dtype: image
13
+ - name: id
14
+ dtype: int32
15
+ - name: width
16
+ dtype: int32
17
+ - name: height
18
+ dtype: int32
19
+ - name: annotations
20
+ dtype: string
21
+ license: cc-by-4.0
22
+ task_categories:
23
+ - object-detection
24
+ tags:
25
+ - object365
26
+ - detection
27
+ - coco-format
28
+ ---
29
+
30
+ # Objects365 Dataset
31
+
32
+ Objects365 detection dataset in HuggingFace parquet format.
33
+
34
+ ## Schema
35
+
36
+ | Column | Type | Description |
37
+ |--------|------|-------------|
38
+ | image | Image | RGB image (PIL) |
39
+ | id | int32 | Image ID matching COCO annotation |
40
+ | width | int32 | Image width |
41
+ | height | int32 | Image height |
42
+ | annotations | string | JSON-serialized annotations list |
43
+
44
+ ## Usage
45
+
46
+ ```python
47
+ from datasets import load_dataset
48
+
49
+ ds = load_dataset("surenreddy/object365", split="train")
50
+ ```
51
+
52
+ Annotations are available as COCO-format JSON files in the repo root:
53
+ - `zhiyuan_objv2_train.json`
54
+ - `zhiyuan_objv2_val.json`