Print information about the VQA annotation file. :return:
(self)
| 71 | self.imgToQA = imgToQA |
| 72 | |
| 73 | def info(self): |
| 74 | """Print information about the VQA annotation file. |
| 75 | |
| 76 | :return: |
| 77 | """ |
| 78 | for key, value in self.datset['info'].items(): |
| 79 | print('%s: %s' % (key, value)) |
| 80 | |
| 81 | def getQuesIds(self, imgIds=[], quesTypes=[], ansTypes=[]): |
| 82 | """Get question ids that satisfy given filter conditions. default skips |
no outgoing calls