JonasLoos commited on
Commit
9f0f389
1 Parent(s): 15bf54e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +27 -27
README.md CHANGED
@@ -182,29 +182,29 @@ pairs = load_dataset("0jl/SPair-71k", name='pairs', trust_remote_code=True)
182
 
183
  splits: `train`, `validation`, `test`
184
 
185
- - `pair_id`: uint32
186
- - `src_img`: image
187
- - `src_segmentation`: image
188
- - `src_data_index`: uint32
189
- - `src_name`: string
190
- - `src_imsize`: uint32[3]
191
- - `src_bndbox`: uint32[4]
192
- - `src_pose`: class_label
193
- - `src_kps`: array2_d
194
- - `trg_img`: image
195
- - `trg_segmentation`: image
196
- - `trg_data_index`: uint32
197
- - `trg_name`: string
198
- - `trg_imsize`: uint32[3]
199
- - `trg_bndbox`: uint32[4]
200
- - `trg_pose`: class_label
201
- - `trg_kps`: array2_d
202
- - `kps_ids`: uint32
203
- - `category`: class_label
204
- - `viewpoint_variation`: uint8
205
- - `scale_variation`: uint8
206
- - `truncation`: uint8
207
- - `occlusion`: uint8
208
 
209
 
210
  ## Features for `data`
@@ -215,10 +215,10 @@ data = load_dataset("0jl/SPair-71k", name='data', trust_remote_code=True)
215
 
216
  splits: `train`
217
 
218
- - `img`: image
219
- - `segmentation`: image
220
- - `annotation`: string
221
- - `name`: string
222
 
223
 
224
 
 
182
 
183
  splits: `train`, `validation`, `test`
184
 
185
+ - `pair_id`: `Value(dtype='uint32')`
186
+ - `src_img`: `Image(decode=True)`
187
+ - `src_segmentation`: `Image(decode=True)`
188
+ - `src_data_index`: `Value(dtype='uint32')`
189
+ - `src_name`: `Value(dtype='string')`
190
+ - `src_imsize`: `Sequence(feature=Value(dtype='uint32'), length=3)`
191
+ - `src_bndbox`: `Sequence(feature=Value(dtype='uint32'), length=4)`
192
+ - `src_pose`: `ClassLabel(names=['Unspecified', 'Frontal', 'Left', 'Rear', 'Right'])`
193
+ - `src_kps`: `Array2D(shape=(None, 2), dtype='uint32')`
194
+ - `trg_img`: `Image(decode=True)`
195
+ - `trg_segmentation`: `Image(decode=True)`
196
+ - `trg_data_index`: `Value(dtype='uint32')`
197
+ - `trg_name`: `Value(dtype='string')`
198
+ - `trg_imsize`: `Sequence(feature=Value(dtype='uint32'), length=3)`
199
+ - `trg_bndbox`: `Sequence(feature=Value(dtype='uint32'), length=4)`
200
+ - `trg_pose`: `ClassLabel(names=['Unspecified', 'Frontal', 'Left', 'Rear', 'Right'])`
201
+ - `trg_kps`: `Array2D(shape=(None, 2), dtype='uint32')`
202
+ - `kps_ids`: `Sequence(feature=Value(dtype='uint32'), length=-1)`
203
+ - `category`: `ClassLabel(names=['cat', 'pottedplant', 'train', 'bicycle', 'car', 'bus', 'aeroplane', 'dog', 'bird', 'chair', 'motorbike', 'cow', 'bottle', 'person', 'boat', 'sheep', 'horse', 'tvmonitor'])`
204
+ - `viewpoint_variation`: `Value(dtype='uint8')`
205
+ - `scale_variation`: `Value(dtype='uint8')`
206
+ - `truncation`: `Value(dtype='uint8')`
207
+ - `occlusion`: `Value(dtype='uint8')`
208
 
209
 
210
  ## Features for `data`
 
215
 
216
  splits: `train`
217
 
218
+ - `img`: `Image(decode=True)`
219
+ - `segmentation`: `Image(decode=True)`
220
+ - `annotation`: `Value(dtype='string')`
221
+ - `name`: `Value(dtype='string')`
222
 
223
 
224