Commit
·
280600b
1
Parent(s):
5df08d1
Update README.md
Browse files
README.md
CHANGED
@@ -24,6 +24,7 @@ extra_gated_prompt: "By clicking on “Access repository” below, you also agre
|
|
24 |
# Dataset Card for VASR
|
25 |
- [Dataset Description](#dataset-description)
|
26 |
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
|
|
|
27 |
- [Colab notebook code for VASR evaluation with ViT](#colab-notebook-code-for-vasr-evaluation-with-clip)
|
28 |
- [Languages](#languages)
|
29 |
- [Dataset Structure](#dataset-structure)
|
@@ -46,10 +47,16 @@ NA
|
|
46 |
- **Leaderboard:**
|
47 |
https://vasr-dataset.github.io/
|
48 |
- **Point of Contact:**
|
49 |
-
|
50 |
-
|
51 |
https://vasr.github.io/leaderboard.
|
52 |
https://paperswithcode.com/dataset/vasr.
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
## Colab notebook code for VASR evaluation with ViT
|
54 |
https://colab.research.google.com/drive/1HUg0aHonFDK3hVFrIRYdSEfpUJeY-4dI
|
55 |
### Languages
|
@@ -57,20 +64,12 @@ English.
|
|
57 |
## Dataset Structure
|
58 |
### Data Fields
|
59 |
A: datasets.Image() - the first input image, **A**:A'
|
60 |
-
A': datasets.Image() - the second input image, different from A' in a single key, A:**A'
|
61 |
-
B: datasets.Image() - the third input image, has the same different item as A, **B**:B'
|
62 |
-
B': datasets.Image() - the forth image, which is the analogy solution. Different from B' in a single key (the same different one as in A:A'), B:**B'
|
63 |
-
candidates_images: [datasets.Image()] - a list of candidate images solutions to the analogy
|
64 |
-
label: datasets.Value("int64") - the index of the ground-truth solution
|
65 |
-
candidates: [datasets.Value("string")] - a list of candidate string solutions to the analogy
|
66 |
-
A_verb: datasets.Value("string") - the verb of the first input image A
|
67 |
-
A'_verb: datasets.Value("string") - the verb of the second input image A'
|
68 |
-
B_verb: datasets.Value("string") - the verb of the third input image B
|
69 |
-
B'_verb: datasets.Value("string") - the verb of the forth image, which is the analogy solution
|
70 |
-
diff_item_A: datasets.Value("string") - FrameNet key of the item that is different between **A**:A', in image A (which is the same as image B)
|
71 |
-
diff_item_A_str_first: datasets.Value("string") - String representation of the FrameNet key of the item that is different between **A**:A', in image A
|
72 |
-
diff_item_A': datasets.Value("string") - FrameNet key of the item that is different between A:**A'**, in image A' (which is the same as image B')
|
73 |
-
diff_item_A'_str_first: datasets.Value("string") - String representation of the FrameNet key of the item that is different between A:**A'**, in image A'
|
74 |
|
75 |
### Data Splits
|
76 |
There are three splits, TRAIN, VALIDATION, and TEST.
|
|
|
24 |
# Dataset Card for VASR
|
25 |
- [Dataset Description](#dataset-description)
|
26 |
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
|
27 |
+
- [How to Submit Predictions?](#how-to-submit-predictions?)
|
28 |
- [Colab notebook code for VASR evaluation with ViT](#colab-notebook-code-for-vasr-evaluation-with-clip)
|
29 |
- [Languages](#languages)
|
30 |
- [Dataset Structure](#dataset-structure)
|
|
|
47 |
- **Leaderboard:**
|
48 |
https://vasr-dataset.github.io/
|
49 |
- **Point of Contact:**
|
50 |
+
yonatan.bitton@mail.huji.ac.il
|
51 |
+
## Supported Tasks and Leaderboards
|
52 |
https://vasr.github.io/leaderboard.
|
53 |
https://paperswithcode.com/dataset/vasr.
|
54 |
+
## Supported Tasks and Leaderboards
|
55 |
+
To submit predictions, please send a prediction CSV file to [email protected] / [email protected].
|
56 |
+
The prediction file should include a "B'" column with the predicted candidate name that best solves the analogy, and an index from 1 to 4 indicating the location of the predicted candidate in the given candidate list.
|
57 |
+
An example prediction file is available [HERE](https://drive.google.com/file/d/1NvBNdvlWmEOYjIVi2xdmQ_tUm-TXo42u/view?usp=share_link).
|
58 |
+
A submission is allowed once a week, and you will receive a response within a week.
|
59 |
+
|
60 |
## Colab notebook code for VASR evaluation with ViT
|
61 |
https://colab.research.google.com/drive/1HUg0aHonFDK3hVFrIRYdSEfpUJeY-4dI
|
62 |
### Languages
|
|
|
64 |
## Dataset Structure
|
65 |
### Data Fields
|
66 |
A: datasets.Image() - the first input image, **A**:A'
|
67 |
+
A': datasets.Image() - the second input image, different from A' in a single key, A:**A'**.
|
68 |
+
B: datasets.Image() - the third input image, has the same different item as A, **B**:B'.
|
69 |
+
B': datasets.Image() - the forth image, which is the analogy solution. Different from B' in a single key (the same different one as in A:A'), B:**B'**. Hidden in the test set.
|
70 |
+
candidates_images: [datasets.Image()] - a list of candidate images solutions to the analogy.
|
71 |
+
label: datasets.Value("int64") - the index of the ground-truth solution. Hidden in the test set.
|
72 |
+
candidates: [datasets.Value("string")] - a list of candidate string solutions to the analogy.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
|
74 |
### Data Splits
|
75 |
There are three splits, TRAIN, VALIDATION, and TEST.
|