visual_genome_python_driver icon indicating copy to clipboard operation
visual_genome_python_driver copied to clipboard

Probably bug in utils.py

Open DaddyWesker opened this issue 7 years ago • 1 comments

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

DaddyWesker avatar Aug 01 '18 12:08 DaddyWesker

Seems like no body is maintaining this dataset now.

adidasnike90 avatar Jun 19 '20 03:06 adidasnike90