I am working on VCR task and need to use the visual extracted feature. I download the lmdb data for VCR from the dropbox: VCR_gt_resnet101_faster_rcnn_genome.lmdb and VCR_resnet101_faster_rcnn_genome.lmdb and other files. But when I open them with lmdb.open(), I got the error: lmdb.InvalidError: ./VCR_gt_resnet101_faster_rcnn_genome.lmdb: MDB_INVALID: File is not an LMDB file.
Could anyone help? Did the data file I downloaded is broken? or any other reason?
Here is the code I use to open the lmdb file:
path = "./VCR_gt_resnet101_faster_rcnn_genome.lmdb"
env = lmdb.open(path, map_size=int(1e13), max_readers=1, readonly=True, lock=False, readahead=False, meminit=False)
and here is my dir structure:

I am working on VCR task and need to use the visual extracted feature. I download the lmdb data for VCR from the dropbox:
VCR_gt_resnet101_faster_rcnn_genome.lmdbandVCR_resnet101_faster_rcnn_genome.lmdband other files. But when I open them withlmdb.open(), I got the error:lmdb.InvalidError: ./VCR_gt_resnet101_faster_rcnn_genome.lmdb: MDB_INVALID: File is not an LMDB file.Could anyone help? Did the data file I downloaded is broken? or any other reason?
Here is the code I use to open the lmdb file:
and here is my dir structure:
