whyen-wang commited on
Commit
fae9fa7
1 Parent(s): f056569
Files changed (1) hide show
  1. README.md +11 -7
README.md CHANGED
@@ -100,7 +100,6 @@ COCO is a large-scale object detection, segmentation, and captioning dataset.
100
  ### Supported Tasks and Leaderboards
101
 
102
  [Object Detection](https://huggingface.co/tasks/object-detection)
103
- [Image Segmentation](https://huggingface.co/tasks/image-segmentation)
104
 
105
  ### Languages
106
 
@@ -115,12 +114,17 @@ An example looks as follows.
115
  ```
116
  {
117
  "image": PIL.Image(mode="RGB"),
118
- "captions": [
119
- "Closeup of bins of food that include broccoli and bread.",
120
- "A meal is presented in brightly colored plastic trays.",
121
- "there are containers filled with different kinds of foods",
122
- "Colorful dishes holding meat, vegetables, fruit, and bread.",
123
- "A bunch of trays that have different food."
 
 
 
 
 
124
  ]
125
  }
126
  ```
 
100
  ### Supported Tasks and Leaderboards
101
 
102
  [Object Detection](https://huggingface.co/tasks/object-detection)
 
103
 
104
  ### Languages
105
 
 
114
  ```
115
  {
116
  "image": PIL.Image(mode="RGB"),
117
+ "bboxes": [
118
+ [339.8800048828125, 22.15999984741211,
119
+ 153.8800048828125, 300.7300109863281],
120
+ [471.6400146484375, 172.82000732421875,
121
+ 35.91999816894531, 48.099998474121094]],
122
+ "keypoints": [[
123
+ [368, 61, 1], [369, 52, 2], [0, 0, 0], [382, 48, 2], [0, 0, 0],
124
+ [368, 84, 2], [435, 81, 2], [362, 125, 2], [446, 125, 2], [360, 153, 2],
125
+ [0, 0, 0], [397, 167, 1], [439, 166, 1], [369, 193, 2], [461, 234, 2],
126
+ [361, 246, 2], [474, 287, 2]
127
+ ], [[...]]
128
  ]
129
  }
130
  ```