abhik1505040 commited on
Commit
40d568d
·
verified ·
1 Parent(s): 064ba00

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -10
README.md CHANGED
@@ -42,8 +42,10 @@ size_categories:
42
  ---
43
  # IllusionVQA: Optical Illusion Dataset
44
 
45
- Paper Link: <br>
46
- Github Link: <be>
 
 
47
  ## TL;DR
48
  IllusionVQA is a dataset of optical illusions and hard-to-interpret scenes designed to test the capability of Vision Language Models in comprehension and soft localization tasks. GPT4V achieved 62.99% accuracy on comprehension and 49.7% on localization, while humans achieved 91.03% and 100% respectively.
49
 
@@ -76,12 +78,12 @@ def construct_mcq(options, correct_option):
76
  def add_row(content, data, i, with_answer=False):
77
  mcq, correct_option_letter = construct_mcq(data["options"], data["answer"])
78
  content.append({ "type": "text",
79
- "text": "Image "+str(i)+": "+data["question"]+"\n"+mcq })
80
  content.append({ "type": "image_url",
81
  "image_url": {"url": f"data:image/jpeg;base64,{encode_image(data["image"])}",
82
  "detail": "low"}})
83
  if with_answer:
84
- content.append({"type": "text", "text": "Answer {}: ".format(i)+correct_option_letter})
85
  else:
86
  content.append({"type": "text", "text": "Answer {}: ".format(i), })
87
  return content
@@ -94,13 +96,12 @@ content = [{
94
  "text": "You'll be given an image, an instruction and some choices. You have to select the correct one. Do not explain your reasoning. Answer with the option's letter from the given choices directly. Here are a few examples:",
95
  }]
96
 
97
- ### Add the few examples
98
- i = 1
99
- for data in dataset["train"]:
100
  content = add_row(content, data, i, with_answer=True)
101
- i += 1
102
 
103
  content.append({"type": "text","text": "Now you try it!",})
 
104
  next_idx = i
105
 
106
  ### Add the test data
@@ -115,14 +116,25 @@ response = client.chat.completions.create(
115
  )
116
  gpt4_answer = response.choices[0].message.content
117
  print(gpt4_answer)
 
118
  ```
119
 
120
  ## License
121
- This dataset is made available for non-commercial research purposes only, including for evaluation of model performance. The dataset may not be used for training models. The dataset contains images collected from the internet. While permission has been obtained from some of the images' creators, permission has not yet been received from all creators. If you believe any image in this dataset is used without proper permission and you are the copyright holder, please email [email protected] to request the removal of the image from the dataset.
122
 
123
  The dataset creator makes no representations or warranties regarding the copyright status of the images in the dataset. The dataset creator shall not be held liable for any unauthorized use of copyrighted material that may be contained in the dataset.
124
 
125
  You agree to the terms and conditions specified in this license by downloading or using this dataset. If you do not agree with these terms, do not download or use the dataset.
126
 
 
127
 
128
- ### Citation
 
 
 
 
 
 
 
 
 
 
42
  ---
43
  # IllusionVQA: Optical Illusion Dataset
44
 
45
+ [Project Page](https://illusionvqa.github.io/) |
46
+ [Paper](https://arxiv.org/abs/2403.15952) |
47
+ [Github](https://github.com/csebuetnlp/IllusionVQA/)
48
+
49
  ## TL;DR
50
  IllusionVQA is a dataset of optical illusions and hard-to-interpret scenes designed to test the capability of Vision Language Models in comprehension and soft localization tasks. GPT4V achieved 62.99% accuracy on comprehension and 49.7% on localization, while humans achieved 91.03% and 100% respectively.
51
 
 
78
  def add_row(content, data, i, with_answer=False):
79
  mcq, correct_option_letter = construct_mcq(data["options"], data["answer"])
80
  content.append({ "type": "text",
81
+ "text": "Image " + str(i) + ": " + data["question"] + "\n" + mcq })
82
  content.append({ "type": "image_url",
83
  "image_url": {"url": f"data:image/jpeg;base64,{encode_image(data["image"])}",
84
  "detail": "low"}})
85
  if with_answer:
86
+ content.append({"type": "text", "text": "Answer {}: ".format(i) + correct_option_letter})
87
  else:
88
  content.append({"type": "text", "text": "Answer {}: ".format(i), })
89
  return content
 
96
  "text": "You'll be given an image, an instruction and some choices. You have to select the correct one. Do not explain your reasoning. Answer with the option's letter from the given choices directly. Here are a few examples:",
97
  }]
98
 
99
+ ### Add a few examples
100
+ for i, data in enumerate(dataset["train"], 1):
 
101
  content = add_row(content, data, i, with_answer=True)
 
102
 
103
  content.append({"type": "text","text": "Now you try it!",})
104
+
105
  next_idx = i
106
 
107
  ### Add the test data
 
116
  )
117
  gpt4_answer = response.choices[0].message.content
118
  print(gpt4_answer)
119
+
120
  ```
121
 
122
  ## License
123
+ This dataset is made available for non-commercial research purposes only under the [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License (CC BY-NC-SA 4.0)](https://creativecommons.org/licenses/by-nc-sa/4.0/). The dataset may not be used for training models. The dataset contains images collected from the internet. While permission has been obtained from some of the images' creators, permission has not yet been received from all creators. If you believe any image in this dataset is used without proper permission and you are the copyright holder, please email [email protected] to request the removal of the image from the dataset.
124
 
125
  The dataset creator makes no representations or warranties regarding the copyright status of the images in the dataset. The dataset creator shall not be held liable for any unauthorized use of copyrighted material that may be contained in the dataset.
126
 
127
  You agree to the terms and conditions specified in this license by downloading or using this dataset. If you do not agree with these terms, do not download or use the dataset.
128
 
129
+ <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /></a>
130
 
131
+
132
+ ### Citation
133
+ ```
134
+ @article{shahgir2024illusionvqa,
135
+ title={IllusionVQA: A Challenging Optical Illusion Dataset for Vision Language Models},
136
+ author={Haz Sameen Shahgir and Khondker Salman Sayeed and Abhik Bhattacharjee and Wasi Uddin Ahmad and Yue Dong and Rifat Shahriyar},
137
+ year={2024},
138
+ url={https://arxiv.org/abs/2403.15952},
139
+ }
140
+ ```