Update README.md
Browse files
README.md
CHANGED
@@ -21,3 +21,25 @@ Preprocessed training and evaluation data from KiloGram.
|
|
21 |
|
22 |
KiloGram dataset and code repo: https://github.com/lil-lab/kilogram
|
23 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
|
22 |
KiloGram dataset and code repo: https://github.com/lil-lab/kilogram
|
23 |
|
24 |
+
---
|
25 |
+
# File Formats
|
26 |
+
## Training Set
|
27 |
+
Texts: `train_*.json` are all in the format of `{tangramName: list(annotations)}`.
|
28 |
+
|
29 |
+
Images: Colored images with parts (under `/color`) are named in the format of `tangramName_{idx}.png`, where `idx` corresponds to the index of the annotation in the text file.
|
30 |
+
|
31 |
+
## Validation, Development, Heldout Set
|
32 |
+
|
33 |
+
Texts: `{whole, part}_{black, color}.json` are in the format of `{"targets": list(imageFileNames), "images": list(imageFileNames), "texts": list(annotations)}`. We flattened all the contexts and concatenated them into one list for each entry.
|
34 |
+
|
35 |
+
E.g. the first 10 elements in `"targets"` are the image file name of the target of the first context repeated 10 times; the first 10 of `"images"` are the image file names in that context; and the first 10 of `"texts"` are the corresponding 10 annotations in that context.
|
36 |
+
|
37 |
+
`/controlled` contains experiments with constrained contexts controlled for number of parts, and `/random` contains ones without. (See Appendix A.8 in paper)
|
38 |
+
|
39 |
+
`/development/texts/augmented/aug_dev.json` and `images/augmented.tar.bz2` are experiments in the same format as above used to evaluate the effect of adding part information.
|
40 |
+
|
41 |
+
|
42 |
+
Intermediate files:
|
43 |
+
|
44 |
+
`*/text/controlled/eval_batch_data.json` are in the format of
|
45 |
+
`{tangramName: {numOfParts: list({"target": [tangramName_{idx}, annotation], "distractors": list(list([tangramName_{idx}, annotation]))})}}`, used to generate controlled experiment jsons. Note: annotations are descriptions concatenated by "#" instead of in natural English.
|