visual_genome_python_driver
visual_genome_python_driver copied to clipboard
Probably bug in utils.py
Hello. This line (№123) qas.append(QA(info['qa_id'], image_map[info['image_id']], info['question'], info['answer'], qos, aos)) But there are no "qa_id" and "image_id" in info. There are "id" and "image" instead so it should be qas.append(QA(info['id'], image_map[info['image']], info['question'], info['answer'], qos, aos)) no?
Another one problem. From tutorial. Line qas = api.get_all_QAs(qtotal=10) have to result in getting qas with size 10, as i believe, but it's length is 1000. I believe there are something wron in "get_all_QAs". Please check it
Seems like no body is maintaining this dataset now.