Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -18,4 +18,52 @@ configs:
|
|
18 |
data_files:
|
19 |
- split: train
|
20 |
path: data/train-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
data_files:
|
19 |
- split: train
|
20 |
path: data/train-*
|
21 |
+
license: cc-by-4.0
|
22 |
+
task_categories:
|
23 |
+
- image-segmentation
|
24 |
+
- image-to-text
|
25 |
+
- text-to-image
|
26 |
+
language:
|
27 |
+
- en
|
28 |
+
pretty_name: COCO 2017 segmentation dataset downsampled with captions
|
29 |
+
size_categories:
|
30 |
+
- 10K<n<100K
|
31 |
---
|
32 |
+
|
33 |
+
## 📄 License and Attribution
|
34 |
+
|
35 |
+
This dataset is a downsampled version of the [COCO 2017 dataset](https://cocodataset.org/#home), tailored for segmentation tasks. It has the following fields:
|
36 |
+
|
37 |
+
|
38 |
+
- image: 256x256 image
|
39 |
+
- segmentation: 256x256 image. Each pixel encodes the class of that pixel. See `class_names_dict.json` for a legend.
|
40 |
+
- captions: a list of captions for the image, each by a different labeler.
|
41 |
+
|
42 |
+
|
43 |
+
Use the dataset as follows:
|
44 |
+
|
45 |
+
```python
|
46 |
+
import requests
|
47 |
+
from datasets import load_dataset
|
48 |
+
|
49 |
+
ds = load_dataset("peteole/coco2017-segmentation", split="train")
|
50 |
+
|
51 |
+
# Optional: Load the class names as dict
|
52 |
+
url = "https://huggingface.co/datasets/peteole/coco2017-segmentation-10k-256x256/resolve/main/class_names_dict.json"
|
53 |
+
response = requests.get(url)
|
54 |
+
class_names_dict = response.json()
|
55 |
+
```
|
56 |
+
|
57 |
+
### License
|
58 |
+
|
59 |
+
- **License Type**: [Creative Commons Attribution 4.0 International (CC BY 4.0)](https://creativecommons.org/licenses/by/4.0/)
|
60 |
+
- **License Details**: This license permits redistribution, modification, and commercial use, provided that appropriate credit is given to the original creators.
|
61 |
+
- **Original Dataset License**: The original COCO 2017 dataset is licensed under CC BY 4.0.
|
62 |
+
|
63 |
+
### Attribution
|
64 |
+
|
65 |
+
When using this dataset, please cite the original COCO dataset as follows:
|
66 |
+
|
67 |
+
> Tsung-Yi Lin, Michael Maire, Serge Belongie, Lubomir Bourdev, Ross Girshick, James Hays, Pietro Perona, Deva Ramanan, C. Lawrence Zitnick, and Piotr Dollár. "Microsoft COCO: Common Objects in Context." In *European Conference on Computer Vision*, pp. 740–755. Springer, 2014.
|
68 |
+
|
69 |
+
For more information, visit the [COCO dataset website](https://cocodataset.org/#home).
|