microsoft/TAP

Microsoft OCR data could not be found

zhousheng97 opened this issue ยท 2 comments

Hello, I would like to know whether there are IMBD files and extracted features corresponding to Microsoft OCR in the data provided? I did not find the corresponding file, could you please clearly point out the corresponding path of each data?
The IMDB files in the figure all seem to correspond to Rosetta OCR.
a00359b0ff0f0505e510b488b4c3a90

Hi @zhousheng97 ,

For the downstream task datasets (e.g., TextVQA, STVQA), we do not create new imdb files for MS-OCR. Instead, we load (overwrite) the OCR directly from the MS-OCR's info.npy file in the data loader, e.g., here:

if self.msocr: ## load ms ocr prediction directly from _info.npy; else: from imdb provided

Hi @zhousheng97 ,

For the downstream task datasets (e.g., TextVQA, STVQA), we do not create new imdb files for MS-OCR. Instead, we load (overwrite) the OCR directly from the MS-OCR's info.npy file in the data loader, e.g., here:

if self.msocr: ## load ms ocr prediction directly from _info.npy; else: from imdb provided

Thanks.