Update README.md
Browse files
README.md
CHANGED
|
@@ -1,33 +1,28 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
- name: filename
|
| 11 |
-
dtype: string
|
| 12 |
-
splits:
|
| 13 |
-
- name: train
|
| 14 |
-
num_bytes: 126002179
|
| 15 |
-
num_examples: 900
|
| 16 |
-
- name: val
|
| 17 |
-
num_bytes: 6984396
|
| 18 |
-
num_examples: 50
|
| 19 |
-
- name: test
|
| 20 |
-
num_bytes: 6690599
|
| 21 |
-
num_examples: 50
|
| 22 |
-
download_size: 139151769
|
| 23 |
-
dataset_size: 139677174
|
| 24 |
-
configs:
|
| 25 |
-
- config_name: default
|
| 26 |
-
data_files:
|
| 27 |
-
- split: train
|
| 28 |
-
path: data/train-*
|
| 29 |
-
- split: val
|
| 30 |
-
path: data/val-*
|
| 31 |
-
- split: test
|
| 32 |
-
path: data/test-*
|
| 33 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- text-generation
|
| 5 |
+
- question-answering
|
| 6 |
+
language:
|
| 7 |
+
- en
|
| 8 |
+
size_categories:
|
| 9 |
+
- n<1K
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
---
|
| 11 |
+
# Flickr1k
|
| 12 |
+
|
| 13 |
+
This dataset is a subset of the [Original Flickr30k Dataset](https://huggingface.co/datasets/nlphuji/flickr30k), containing [Total number of samples, e.g., 5000] image-caption pairs. It has been specifically created for [Briefly state the purpose, e.g., faster experimentation with image captioning models or a specific research focus].
|
| 14 |
+
|
| 15 |
+
## Dataset Details
|
| 16 |
+
|
| 17 |
+
* **Original Dataset:** [Original Flickr30k dataset on Hugging Face Hub](https://huggingface.co/datasets/nlphuji/flickr30k)
|
| 18 |
+
* **Subset Size:** 1000
|
| 19 |
+
* **Splits:** The dataset is divided into the following splits:
|
| 20 |
+
* **Train:** 900 examples.
|
| 21 |
+
* **Validation:** 50 examples.
|
| 22 |
+
* **Test:** 50 examples.
|
| 23 |
+
* **Data Format:** Each example contains the following fields:
|
| 24 |
+
* `image`: The raw bytes of the JPEG image.
|
| 25 |
+
* `caption`: A list of strings, where each string is a caption describing the image.
|
| 26 |
+
* `img_id`: A unique identifier for the image.
|
| 27 |
+
* `filename`: The original filename of the image.
|
| 28 |
+
* **Preprocessing:** The subset was created by [Briefly describe how the subset was created, e.g., randomly sampling from the original test set and splitting it into train, validation, and test sets]. The columns `sentids` and `split` from the original dataset were removed.
|