Summary
205 | During training : Ensembling with a question-only model that will learn the biases, and let the main VQA model learn
206 | useful behaviours.
207 |
208 | During testing: We remove the question-only model, and keep only the VQA model.
209 |
210 |
211 |
212 | | code: https://github.com/cdancette/rubi.bootstrap.pytorch
213 |
214 | _`NSM`
215 | | Learning by Abstraction: The Neural State Machine
216 | | Drew A. Hudson, Christopher D. Manning
217 | | https://arxiv.org/abs/1907.03950
218 |
219 |
220 |
221 | _`SCR`
222 | | Self-Critical Reasoning for Robust Visual Question Answering - **NeurIPS 2019**
223 | | Jialin Wu, Raymond J. Mooney
224 | | https://arxiv.org/abs/1905.09998
225 | | code: https://github.com/jialinwu17/self_critical_vqa
226 | _`HINT`
227 | | Taking a HINT: Leveraging Explanations to Make Vision and Language Models More Grounded - **ICCV 2019**
228 | | Ramprasaath R. Selvaraju, Stefan Lee, Yilin Shen, Hongxia Jin, Shalini Ghosh, Larry Heck, Dhruv Batra, Devi Parikh
229 | | https://arxiv.org/abs/1902.03751
230 | _`ActSeek`
231 | | Actively Seeking and Learning from Live Data - **CVPR 2019**
232 | | Damien Teney, Anton van den Hengel
233 | | https://arxiv.org/abs/1904.02865
234 | _`GRL`
235 | | Adversarial Regularization for Visual Question Answering:Strengths, Shortcomings, and Side Effects - **NAACL HLT - Workshop on Shortcomings in Vision and Language (SiVL) **
236 | | Gabriel Grand, Yonatan Belinkov
237 | | https://arxiv.org/pdf/1906.08430.pdf
238 | | code: https://github.com/gabegrand/adversarial-vqa
239 | _`AdvReg`
240 | | Overcoming Language Priors in Visual Question Answering with Adversarial Regularization - **NeurIPS 2018**
241 | | Sainandan Ramakrishnan, Aishwarya Agrawal, Stefan Lee
242 | | https://papers.nips.cc/paper/7427-overcoming-language-priors-in-visual-question-answering-with-adversarial-regularization.pdf
243 | | code:
244 | _`GVQA`
245 | | Don’t Just Assume; Look and Answer: Overcoming Priors for Visual Question Answering - **CVPR 2018**
246 | | Aishwarya Agrawal, Dhruv Batra, Devi Parikh, Aniruddha Kembhavi
247 | | https://arxiv.org/abs/1712.00377
248 | | code: https://github.com/AishwaryaAgrawal/GVQA
249 |
250 |
251 |
252 | .. _VQA-CP: https://arxiv.org/abs/1712.00377
253 |
--------------------------------------------------------------------------------
/push:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | git add README.rst
3 | git commit -m "readme"
4 | git push origin master
--------------------------------------------------------------------------------