Update README.md
Browse files
README.md
CHANGED
|
@@ -160,16 +160,16 @@ We use the following _statistical-based metrics_:
|
|
| 160 |
- **Image F1 Score** is the harmonic mean of Precision and Recall, providing an overall evaluation of the image quality in the multimodal answer.
|
| 161 |
It is calculated as:
|
| 162 |
|
| 163 |
-
\[
|
| 164 |
\text{Image F1 Score} = 2 \times \frac{\text{Image Precision} \times \text{Image Recall}}{\text{Image Precision} + \text{Image Recall}}
|
| 165 |
-
\]
|
| 166 |
|
| 167 |
- **Image Ordering Score** evaluates whether the order of images inserted into the multimodal answer matches the order of images in the ground truth.
|
| 168 |
Specifically, we compute the weighted edit distance between the two image sequences to reflect the difference in their order.
|
| 169 |
|
| 170 |
- **Data Format** (For lifestyle datasets):
|
| 171 |
-
- **Ground-truth**:
|
| 172 |
-
- **Answer**:
|
| 173 |
|
| 174 |
- **Scoring Formula**:
|
| 175 |
|
|
@@ -181,13 +181,13 @@ We use the following _statistical-based metrics_:
|
|
| 181 |
- \( \frac{|A \cap B|}{n} \): Normalization factor.
|
| 182 |
|
| 183 |
- **Details**:
|
| 184 |
-
- Here,
|
| 185 |
-
- **String Insertion**: If
|
| 186 |
-
. The operation cost is
|
| 187 |
-
- **String Deletion**: If
|
| 188 |
-
- **String Substitution**: If the positions of images in
|
| 189 |
-
- The weights generally satisfy
|
| 190 |
-
- Weighted edit distance can be computed using dynamic programming, with a time complexity of
|
| 191 |
|
| 192 |
- **Rouge-L** is a text generation evaluation metric based on the longest common subsequence, measuring the structural similarity between the answer and the ground truth.
|
| 193 |
- **BERTScore** is a text generation evaluation metric based on the pre-trained language model BERT, used to assess the semantic similarity between the text in the generated multimodal answer and the ground truth.
|
|
@@ -205,6 +205,7 @@ We use the following _LLM-based metrics_:
|
|
| 205 |
|
| 206 |
## Prompts
|
| 207 |
### Generation Prompts
|
|
|
|
| 208 |
#### Answer Generation Prompt for LLM-Based Method
|
| 209 |
#Input
|
| 210 |
Query: {}
|
|
|
|
| 160 |
- **Image F1 Score** is the harmonic mean of Precision and Recall, providing an overall evaluation of the image quality in the multimodal answer.
|
| 161 |
It is calculated as:
|
| 162 |
|
| 163 |
+
![\[
|
| 164 |
\text{Image F1 Score} = 2 \times \frac{\text{Image Precision} \times \text{Image Recall}}{\text{Image Precision} + \text{Image Recall}}
|
| 165 |
+
\]](https://cdn-uploads.huggingface.co/production/uploads/67571051d39ac252085797ca/9Y1NtxXcyUoLay9mln2GR.png)
|
| 166 |
|
| 167 |
- **Image Ordering Score** evaluates whether the order of images inserted into the multimodal answer matches the order of images in the ground truth.
|
| 168 |
Specifically, we compute the weighted edit distance between the two image sequences to reflect the difference in their order.
|
| 169 |
|
| 170 |
- **Data Format** (For lifestyle datasets):
|
| 171 |
+
- **Ground-truth**: A = a_1 -> a_2 -> ... -> a_n, where a_i represents the image at the i-th position in the order.
|
| 172 |
+
- **Answer**: B = b_1 -> b_2 -> ... -> b_m, where b_j is not necessarily in A, and m is not necessarily equal to n.
|
| 173 |
|
| 174 |
- **Scoring Formula**:
|
| 175 |
|
|
|
|
| 181 |
- \( \frac{|A \cap B|}{n} \): Normalization factor.
|
| 182 |
|
| 183 |
- **Details**:
|
| 184 |
+
- Here, dist(A, B) represents the weighted edit distance between string A and string B , i.e., the minimum total cost to transform string B into string A through the following three operations:
|
| 185 |
+
- **String Insertion**: If B is missing certain images, insert an image from A into a specific position in B
|
| 186 |
+
. The operation cost is p_1.
|
| 187 |
+
- **String Deletion**: If B contains extra irrelevant images, delete them. The operation cost is p_2.
|
| 188 |
+
- **String Substitution**: If the positions of images in B do not match A, substitute the image in B with the corresponding image from A. The operation cost is p_3.
|
| 189 |
+
- The weights generally satisfy p_1 > p_2 > p_3, and p >= p_1 ensures the final score falls within the range \[0, 1\].
|
| 190 |
+
- Weighted edit distance can be computed using dynamic programming, with a time complexity of O(mn).
|
| 191 |
|
| 192 |
- **Rouge-L** is a text generation evaluation metric based on the longest common subsequence, measuring the structural similarity between the answer and the ground truth.
|
| 193 |
- **BERTScore** is a text generation evaluation metric based on the pre-trained language model BERT, used to assess the semantic similarity between the text in the generated multimodal answer and the ground truth.
|
|
|
|
| 205 |
|
| 206 |
## Prompts
|
| 207 |
### Generation Prompts
|
| 208 |
+
|
| 209 |
#### Answer Generation Prompt for LLM-Based Method
|
| 210 |
#Input
|
| 211 |
Query: {}
|