Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- image-to-text
|
| 5 |
+
- object-detection
|
| 6 |
+
language:
|
| 7 |
+
- en
|
| 8 |
+
size_categories:
|
| 9 |
+
- 1K<n<10K
|
| 10 |
+
---
|
| 11 |
+
|
| 12 |
+
# COCO Val2014 - Image Captioning & Object Detection
|
| 13 |
+
|
| 14 |
+
This dataset contains COCO 2014 validation set with captions and object annotations.
|
| 15 |
+
|
| 16 |
+
## Dataset Structure
|
| 17 |
+
|
| 18 |
+
- **image_id**: COCO image ID
|
| 19 |
+
- **image**: The image file
|
| 20 |
+
- **input_prompt**: Instruction prompt for the model
|
| 21 |
+
- **gt_objects**: List of ground truth object categories
|
| 22 |
+
- **gt_captions**: List of ground truth captions (5 per image)
|
| 23 |
+
|
| 24 |
+
## Usage
|
| 25 |
+
|
| 26 |
+
```python
|
| 27 |
+
from datasets import load_dataset
|
| 28 |
+
|
| 29 |
+
dataset = load_dataset("your-username/dataset-name")
|
| 30 |
+
```
|
| 31 |
+
|
| 32 |
+
## Source
|
| 33 |
+
|
| 34 |
+
Based on COCO 2014 dataset: https://cocodataset.org/
|