Create README
Browse files
README
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
pretty_name: "Flickr30k"
|
| 3 |
+
license: "unknown"
|
| 4 |
+
language:
|
| 5 |
+
- en
|
| 6 |
+
tags:
|
| 7 |
+
- image
|
| 8 |
+
- text
|
| 9 |
+
- captioning
|
| 10 |
+
- retrieval
|
| 11 |
+
task_categories:
|
| 12 |
+
- image-to-text
|
| 13 |
+
- text-to-image
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
# Flickr30k
|
| 17 |
+
|
| 18 |
+
This repository hosts a copy of the widely used **Flickr30k** dataset,
|
| 19 |
+
a benchmark for image captioning and image–text retrieval.
|
| 20 |
+
|
| 21 |
+
Flickr30k contains images paired with multiple human-written English captions per image and is widely used in multimodal research.
|
| 22 |
+
|
| 23 |
+
## Contents
|
| 24 |
+
Commonly included files/fields (exact filenames may vary):
|
| 25 |
+
|
| 26 |
+
- Images (or image references)
|
| 27 |
+
- Captions (often 5 captions per image)
|
| 28 |
+
- Optional split / id fields
|
| 29 |
+
|
| 30 |
+
A typical record conceptually looks like:
|
| 31 |
+
```json
|
| 32 |
+
{
|
| 33 |
+
"image": "<image>",
|
| 34 |
+
"caption": ["...", "...", "...", "...", "..."]
|
| 35 |
+
}
|
| 36 |
+
```
|
| 37 |
+
|
| 38 |
+
## Usage
|
| 39 |
+
```python
|
| 40 |
+
from datasets import load_dataset
|
| 41 |
+
ds = load_dataset("nlphuji/flickr30k")
|
| 42 |
+
```
|
| 43 |
+
|
| 44 |
+
## Source
|
| 45 |
+
This dataset is taken from the Hugging Face dataset repository:
|
| 46 |
+
https://huggingface.co/datasets/nlphuji/flickr30k
|
| 47 |
+
|
| 48 |
+
## License
|
| 49 |
+
The Hugging Face dataset card does not clearly specify a single unified license (“unknown” is shown in some metadata).
|
| 50 |
+
Because the images originate from Flickr, usage is typically subject to the relevant **Flickr Terms & Conditions** and any per-image licensing.
|
| 51 |
+
Please review the dataset’s original homepage and usage terms before redistribution or commercial use.
|