visual_genome_python_driver
visual_genome_python_driver copied to clipboard
A python wrapper for the Visual Genome API
When I mention the following line in my Python3 code and run: from src import api as vg I am getting the above mentioned error. Please help? Note: I have...
Hello everyone, does anyone know how to incorporate all the file of this dataset into one database for easy access to all the info inside it. if not , where...
AttributeError: module 'visual_genome.api' has no attribute 'GetImageIdsInRange'
api doesn't work kindly fix this 
Hello! Thank you for this wrapper! It is very useful for my work. I found a small mistake in the tutorial in README.md. There you suggest to extract ids in...
Hello, I've been trying to use the **get_scene_graph_of_image** method, but it seems to hang indefinitely.
If all VG images are taken from MSCOCO, then why do a few images not have a valid cocoid. For instance id of 2359297 has a coco_id of -1. Thank...
I am trying to execute following code but its asking scene_graph.json file. where I can find that file import visual_genome.local as vg > > # Convert full .json files to...
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'],...
fixed some missing parameters, changed 'print' to python3 style.