File size: 3,013 Bytes
290428a
 
 
 
 
b75e4e0
 
290428a
 
 
 
 
 
 
 
 
 
 
 
b75e4e0
 
290428a
2537731
b75e4e0
 
 
290428a
 
 
 
 
 
 
2537731
 
 
 
 
 
290428a
8d7f273
 
2743944
 
 
 
8d7f273
b4c69c7
 
8d7f273
 
 
 
 
 
 
2743944
 
 
 
8d7f273
2537731
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
56
57
58
59
60
61
62
---
dataset_info:
  features:
  - name: image
    dtype: image
  - name: coco_filename
    dtype: string
  - name: class_name
    dtype: string
  - name: prediction
    dtype: string
  - name: ground_truth
    dtype: string
  - name: IoU
    dtype: float64
  - name: lines
    dtype: string
  splits:
  - name: train
    num_bytes: 393005272.944
    num_examples: 1631
  - name: validation
    num_bytes: 81827046
    num_examples: 332
  download_size: 391573463
  dataset_size: 474832318.944
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
  - split: validation
    path: data/validation-*
license: cdla-permissive-2.0
task_categories:
- image-segmentation
- mask-generation
size_categories:
- 10K<n<100K
---

# About:
The dataset was collected on the  https://www.rapidata.ai platform and contains tens of thousands of human annotations of 70+ different kinds of objects. 
Rapidata makes it easy to collect manual labels in several data modalities with this repository containing freehand drawings on ~2000 images from the COCO dataset.
Users are shown an image and are asked to paint a class of objects with a brush tool - there is always a single such object on the image, so the task is not ambiguous. 
The result of this user-interaction is a collection of lines drawn by the user on that particular image.

If you get value from this dataset and would like to see more in the future, please consider liking it.

# Challenge:
The challenge of the dataset is to aggregate the lines on each image to get an idea of where the target object is.  For each image, we provide hundreds of 2D lines drawn by different humans that can be used to create bounding boxes and segmentation maps on each image of the target object. Apart from the lines, the dataset contains the COCO 2D bounding box ground truths as well as baseline predictions to beat.

# Structure:
The metadata.csv describes each image in one row:
| Column Name       | Description                                                                 |
|-------------------|-----------------------------------------------------------------------------|
| coco_filename     | The unique identifier for each image in the COCO dataset.                   |
| class_name        | The class/category that the user was asked to mark on the image. Same as `category_name` in COCO. |
| prediction        | A baseline COCO bounding box prediction based on heatmaps.                  |
| ground_truth      | The COCO bounding box ground truth.                                          |
| IoU               | The Intersection over Union (IoU) score between the baseline prediction and the ground truth. |
| lines             | A 3D array of coordinates. Because each user can draw multiple lines, the first dimension represents different users, the second dimension represents multiple lines drawn by each user, and the third dimension represents the individual [x, y] coordinates of each line, relative to the image dimensions. |